-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.js
More file actions
48 lines (44 loc) · 1.1 KB
/
next.config.js
File metadata and controls
48 lines (44 loc) · 1.1 KB
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
44
45
46
47
48
const path = require('path')
const SWPrecacheWebpackPlugin = require('sw-precache-webpack-plugin')
module.exports = {
webpack: (config, { dev }) => {
/**
* Install and Update our Service worker
* on our main entry file :)
* Reason: https://github.com/ooade/NextSimpleStarter/issues/32
*/
const oldEntry = config.entry
config.entry = () =>
oldEntry().then(entry => {
entry['main.js'] && entry['main.js'].push(path.resolve('./offline/offline'))
return entry
})
/* Enable only in Production */
if (!dev) {
// Service Worker
config.plugins.push(
new SWPrecacheWebpackPlugin({
cacheId: 'next-ss',
filepath: './static/sw.js',
minify: true,
staticFileGlobsIgnorePatterns: [/\.next\//],
staticFileGlobs: [
'static/**/*' // Precache all static files by default
],
runtimeCaching: [
// Example with different handlers
{
handler: 'fastest',
urlPattern: /[.](png|jpg|css)/
},
{
handler: 'networkFirst',
urlPattern: /^http.*/ //cache all files
}
]
})
)
}
return config
}
}