-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnext.config.js
43 lines (40 loc) · 1.13 KB
/
next.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const path = require('path')
const SWPrecacheWebpackPlugin = require('sw-precache-webpack-plugin')
module.exports = {
webpack: (config, { dev }) => {
const oldEntry = config.entry
config.entry = () =>
oldEntry().then(entry => {
entry['main.js'].push(path.resolve('/utils/offline'))
return entry
})
/* Enable only in Production */
if (!dev) {
// Service Worker
config.plugins.push(
new SWPrecacheWebpackPlugin({
filename: 'sw.js',
minify: false,
staticFileGlobsIgnorePatterns: [/\.next\//],
importScripts: ['/static/js/push-notifications.js'],
staticFileGlobs: [
'static/**/*' // Precache all static files by default
],
forceDelete: true,
runtimeCaching: [
// Example with different handlers
{
handler: 'fastest',
urlPattern: /[.](png|jpg|css)/
},
{
handler: 'networkFirst',
urlPattern: /^http.*/ // cache all files
}
]
})
)
}
return config
}
}