-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathnext.config.js
55 lines (50 loc) · 1.28 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
52
53
54
55
const path = require('path');
const childProcess = require('child_process');
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true'
});
const commitID = childProcess.execSync('git rev-parse HEAD').toString();
module.exports = withBundleAnalyzer({
reactStrictMode: true,
redirects: () => [
{
source: '/status/:address',
destination: '/status/java/:address',
permanent: true
},
{
source: '/docs/:revision',
destination: '/docs',
permanent: true
}
],
webpack: (config) => {
config.resolve.alias['@'] = path.resolve(__dirname, 'src');
config.module.rules.push(
{
test: /\.jsonc$/,
use: [
{ loader: 'raw-loader' }
]
},
{
test: /\.svg$/,
use: [
{ loader: '@svgr/webpack' }
]
}
);
return config;
},
env: {
NEXT_PUBLIC_COMMIT_ID: commitID
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'api.mineatar.io'
}
]
}
});