forked from blockworks-foundation/mango-ui-v3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.config.js
51 lines (46 loc) · 1.06 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
const { i18n } = require('./next-i18next.config')
const moduleExports = {
i18n,
async redirects() {
return [
{
source: '/market',
destination: '/',
permanent: true,
},
{
source: '/spot/:name',
destination: '/',
permanent: true,
},
{
source: '/perp/:name',
destination: '/',
permanent: true,
},
]
},
webpack: (config, options) => {
// Important: return the modified config
if (!options.isServer) {
config.resolve.fallback.fs = false
}
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
})
if (process.env.ANALYZE === 'true') {
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
config.plugins.push(
new BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: options.isServer
? './analyze/server.html'
: './analyze/client.html',
})
)
}
return config
},
}
module.exports = moduleExports