forked from sportstimes/f1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
42 lines (40 loc) · 1.15 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
const withFonts = require('next-fonts');
const withOffline = require('next-offline');
const nextConfig = {
webpack(config, options) {
config.node = { net: 'empty' }
return config;
},
target: 'serverless',
transformManifest: manifest => ['/'].concat(manifest),
generateInDevMode: true,
workboxOpts: {
swDest: 'static/service-worker.js',
runtimeCaching: [
{
urlPattern: /^https?.*/,
handler: 'NetworkFirst',
options: {
cacheName: 'https-calls',
networkTimeoutSeconds: 15,
expiration: {
maxEntries: 150,
maxAgeSeconds: 14 * 24 * 60 * 60, // 14 days
},
cacheableResponse: {
statuses: [0, 200],
},
},
},
{ // Cache the underlying font files with a cache-first strategy for 1 year.
urlPattern: /.*\.(?:woff|woff2)$/, handler: 'CacheFirst',
options: {
cacheName: 'fonts',
cacheableResponse: { statuses: [0, 200] },
expiration: { maxAgeSeconds: 60 * 60 * 24 * 365, maxEntries: 30 }
}
},
],
}
};
module.exports = withOffline(withFonts(nextConfig));