-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.config.ts
98 lines (95 loc) · 2.26 KB
/
next.config.ts
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import withPWA from 'next-pwa';
import type { NextConfig } from "next";
const config = {
/* config options here */
};
// @ts-ignore -- Ignoring type mismatch between next-pwa and next.js
const nextConfig = withPWA({
dest: 'public',
register: true,
skipWaiting: true,
disable: process.env.NODE_ENV === 'development',
// Add offline strategy configuration
runtimeCaching: [
{
urlPattern: /^https:\/\/fonts\.(?:googleapis|gstatic)\.com\/.*/i,
handler: 'CacheFirst',
options: {
cacheName: 'google-fonts',
expiration: {
maxEntries: 4,
maxAgeSeconds: 365 * 24 * 60 * 60 // 1 year
}
}
},
{
urlPattern: /\.(?:eot|otf|ttc|ttf|woff|woff2|font)$/i,
handler: 'CacheFirst',
options: {
cacheName: 'font-assets',
expiration: {
maxEntries: 4,
maxAgeSeconds: 7 * 24 * 60 * 60 // 1 week
}
}
},
{
urlPattern: /\.(?:jpg|jpeg|gif|png|svg|ico)$/i,
handler: 'CacheFirst',
options: {
cacheName: 'image-assets',
expiration: {
maxEntries: 64,
maxAgeSeconds: 7 * 24 * 60 * 60 // 1 week
}
}
},
{
urlPattern: /\.(?:mp3|wav|ogg)$/i,
handler: 'CacheFirst',
options: {
cacheName: 'audio-assets',
expiration: {
maxEntries: 32,
maxAgeSeconds: 7 * 24 * 60 * 60 // 1 week
}
}
},
{
urlPattern: /\/_next\/data\/.+\/.+\.json$/i,
handler: 'StaleWhileRevalidate',
options: {
cacheName: 'next-data',
expiration: {
maxEntries: 32,
maxAgeSeconds: 24 * 60 * 60 // 24 hours
}
}
},
{
urlPattern: /\/api\/.*$/i,
handler: 'NetworkFirst',
options: {
cacheName: 'apis',
expiration: {
maxEntries: 16,
maxAgeSeconds: 24 * 60 * 60 // 24 hours
},
networkTimeoutSeconds: 10
}
},
{
urlPattern: /.*/i,
handler: 'NetworkFirst',
options: {
cacheName: 'others',
expiration: {
maxEntries: 32,
maxAgeSeconds: 24 * 60 * 60 // 24 hours
},
networkTimeoutSeconds: 10
}
}
]
})(config);
export default nextConfig;