Skip to content

Commit

Permalink
Merge pull request #1263 from jcardus/patch-1
Browse files Browse the repository at this point in the history
maximumFileSizeToCacheInBytes to 5Mb
  • Loading branch information
tananaev authored Aug 23, 2024
2 parents 37c2d32 + dc4635b commit 0d850ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default defineConfig(() => ({
includeAssets: ['favicon.ico', 'apple-touch-icon-180x180.png'],
workbox: {
navigateFallbackDenylist: [/^\/api/],
maximumFileSizeToCacheInBytes: 4000000,
maximumFileSizeToCacheInBytes: 10 * 1024 * 1024,
globPatterns: ['**/*.{js,css,html,woff,woff2,mp3}'],
},
manifest: {
Expand Down

0 comments on commit 0d850ec

Please sign in to comment.