Fixed invalid type.

Workbox would not build do to the maximumFileSizeToCacheInBytes value.
This commit is contained in:
bengarrett 2022-04-23 10:26:38 +10:00
parent 863fe6099d
commit 844612c9bf

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`],