Fixed invalid type.

Workbox would not build do to the maximumFileSizeToCacheInBytes value.
master
bengarrett 2022-04-23 10:26:38 +10:00
parent 863fe6099d
commit 844612c9bf
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
module.exports = {
globDirectory: `build/`,
globPatterns: [`**/*.{css,html,ico,js,json,mem,png,wasm,zip}`],
maximumFileSizeToCacheInBytes: `8000000`,
maximumFileSizeToCacheInBytes: 8000000,
swDest: `build/sw.js`,
swSrc: `src/sw.js`,
globIgnores: [`../workbox-config.js`],