UNPKG

211 BJavaScriptView Raw
1module.exports = {
2 swDest: 'dist/sw.js',
3 runtimeCaching: [
4 {
5 urlPattern: /\.(css|gif|gz|jpg|js|png|html|json)$/,
6 handler: 'CacheFirst'
7 }
8 ],
9 skipWaiting: true,
10 clientsClaim: true
11};