Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
uses: actions/dependency-review-action@v3
with:
fail-on-severity: moderate
allow-licenses: MIT, Apache-2.0, BSD-2-Clause, BSD-3-Clause, ISC, GPL-3.0, MIT-0, CC0-1.0, (MIT AND CC0-1.0), (CC0-1.0 AND MIT), 0BSD, Unlicense
allow-licenses: MIT, Apache-2.0, BSD-2-Clause, BSD-3-Clause, ISC, GPL-3.0, MIT-0, CC0-1.0, (MIT AND CC0-1.0), (CC0-1.0 AND MIT), (ISC AND MIT), 0BSD, Unlicense

codeql-analysis:
runs-on: ubuntu-latest
Expand Down
38 changes: 0 additions & 38 deletions BUILD_NOTES.md

This file was deleted.

156 changes: 0 additions & 156 deletions TECHNICAL_DEBT_ANALYSIS.md

This file was deleted.

76 changes: 67 additions & 9 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,66 @@ const config = {
],
},
],
[
'@docusaurus/plugin-pwa',
{
debug: false,
offlineModeActivationStrategies: [
'appInstalled',
'standalone',
'queryString',
],
pwaHead: [
{
tagName: 'link',
rel: 'icon',
href: '/img/logo.png',
},
{
tagName: 'link',
rel: 'manifest',
href: '/manifest.json',
},
{
tagName: 'meta',
name: 'theme-color',
content: '#25c2a0',
},
{
tagName: 'meta',
name: 'apple-mobile-web-app-capable',
content: 'yes',
},
{
tagName: 'meta',
name: 'apple-mobile-web-app-status-bar-style',
content: '#000',
},
{
tagName: 'link',
rel: 'apple-touch-icon',
href: '/img/logo.png',
},
{
tagName: 'link',
rel: 'mask-icon',
href: '/img/logo.png',
color: '#25c2a0',
},
{
tagName: 'meta',
name: 'msapplication-TileImage',
content: '/img/logo.png',
},
{
tagName: 'meta',
name: 'msapplication-TileColor',
content: '#000',
},
],
swCustom: require.resolve('./src/registerSW.js'),
},
],
],

themeConfig:
Expand All @@ -168,11 +228,16 @@ const config = {
appId: 'OFOYRKZKKB',
apiKey: 'f70587b4279fabdac7fd30732de4e5de',
indexName: 'docs-daily',
contextualSearch: true,
searchParameters: {
hitsPerPage: 25,
},
placeholder: 'Search documentation...',
},
colorMode: {
defaultMode: 'dark',
defaultMode: 'light',
disableSwitch: false,
respectPrefersColorScheme: true,
respectPrefersColorScheme: false,
},
navbar: {
logo: {
Expand Down Expand Up @@ -242,13 +307,6 @@ const config = {
],
copyright: `© ${new Date().getFullYear()} All rights reserved.`,
},
announcementBar: {
id: 'support_us',
content: 'Try daily.dev <a target="_blank" rel="noopener noreferrer" href="https://daily.dev"> now!</a>',
backgroundColor: '#fafbfc',
textColor: '#091E42',
isCloseable: true,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
Expand Down
Loading
Loading