This commit is contained in:
Antti Pilto 2018-11-04 22:50:58 +02:00
commit 80fa494b1f

View file

@ -42,10 +42,11 @@ module.exports = {
new SWPrecacheWebpackPlugin( { new SWPrecacheWebpackPlugin( {
cacheId: 'kana-quiz', cacheId: 'kana-quiz',
filename: 'sw.js', filename: 'sw.js',
stripPrefix: '/home/anzz/Code/kanaquiz/',
maximumFileSizeToCacheInBytes: 4194304, maximumFileSizeToCacheInBytes: 4194304,
minify: true, minify: true,
runtimeCaching: [{ runtimeCaching: [{
handler: 'cacheFirst', handler: 'networkFirst',
urlPattern: /\.(woff2|svg|ttf|eot|woff|html)$/, urlPattern: /\.(woff2|svg|ttf|eot|woff|html)$/,
}], }],
}) })
@ -71,4 +72,4 @@ module.exports = {
} }
] ]
} }
}; };