-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathnext.config.js
51 lines (50 loc) · 1.02 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
44
45
46
47
48
49
50
51
let revision = '<revision unknown>';
if (!process.env.GIT_REVISION) {
try {
revision = require('child_process').execSync('git rev-parse HEAD', { cwd: __dirname }).toString().trim();
} catch (e) {}
}
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
env: {
GIT_REVISION: process.env.GIT_REVISION || revision
},
images: {
domains: [
'www.google.com',
'avatar.tobi.sh',
'faisalman.github.io',
'api.dicebear.com',
'cdn.discordapp.com',
'avatars.githubusercontent.com',
'pbs.twimg.com'
]
},
async redirects() {
return [
{
source: '/app',
destination: '/',
permanent: false
}
];
},
async headers() {
return [
{
source: '/:path*',
headers: [
{
key: 'Referrer-Policy',
value: 'no-referrer-when-downgrade'
},
{
key: 'X-DNS-Prefetch-Control',
value: 'on'
}
]
}
];
}
};