-
-
Notifications
You must be signed in to change notification settings - Fork 237
/
next.config.js
58 lines (55 loc) · 1.86 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
56
57
58
const withBundleAnalyzer = require('next-bundle-analyzer')({ enabled: process.env.ANALYZE === 'true' });
const withNextIntl = require('next-intl/plugin')();
const withNextCircularDeps = require('next-circular-dependency');
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
productionBrowserSourceMaps: true,
exclude: /a\.js|node_modules/, // exclude node_modules for checking circular dependencies
redirects: async () => {
return [
{
source: '/:locale(en|es|ja|ru|zh)/faq',
destination: '/:locale/learn/faq',
permanent: true,
},
{
source: '/faq',
destination: '/learn/faq',
permanent: true,
},
{
source: '/:locale(en|es|ja|ru|zh)/learn/wallets/add-network',
destination: '/:locale/learn/wallets/add-network/ethereum',
permanent: true,
},
{
source: '/learn/wallets/add-network',
destination: '/learn/wallets/add-network/ethereum',
permanent: true,
},
// Some images are somehow being requested (probably by other websites). We redirect them to a placeholder image.
{
source: '/erc20.png',
destination: 'https://upload.wikimedia.org/wikipedia/commons/e/e0/SNice.svg',
permanent: true,
},
{
source: '/assets/images/fallback-token-image.png',
destination: 'https://upload.wikimedia.org/wikipedia/commons/e/e0/SNice.svg',
permanent: true,
},
];
},
webpack: (config) => {
config.resolve.fallback = { fs: false, path: false };
config.externals.push('pino-pretty');
return config;
},
};
module.exports = nextConfig;
module.exports = withNextIntl(module.exports);
module.exports = withBundleAnalyzer(module.exports);
if (process.env.CHECK_CIRCULAR_DEPS) {
module.exports = withNextCircularDeps(module.exports);
}