-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathnext.config.js
41 lines (36 loc) · 906 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
const { i18n } = require('./next-i18next.config')
const moduleExports = {
i18n,
async redirects() {
return [
{
source: '/:path*',
destination: 'https://mango.markets',
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