-
Notifications
You must be signed in to change notification settings - Fork 15
/
next.config.js
43 lines (41 loc) · 938 Bytes
/
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 { withContentlayer } = require('next-contentlayer')
const { i18n } = require('./next-i18next.config')
module.exports = withContentlayer()({
i18n,
reactStrictMode: true,
images: {
domains: [
'avatars.githubusercontent.com',
'fosshost.org',
'owo.whats-th.is',
'images.unsplash.com',
'yuri.might-be-super.fun',
'chito.ge',
],
formats: ['image/avif', 'image/webp'],
},
swcMinify: true,
async headers() {
return [
{
source: '/(.*)',
headers: [
{
key: 'Cache-Control',
value:
'max-age=1, stale-while-revalidate=299, stale-if-error=86400',
},
],
},
{
source: '/(.*).(woff2?|png|mp4|jpe?g|svg)',
headers: [
{
key: 'Cache-Control',
value: 'public, max-age=31536000, immutable',
},
],
},
]
},
})