forked from RevokeCash/revoke.cash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
51 lines (48 loc) · 1.59 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 withBundleAnalyzer = require('next-bundle-analyzer')({ enabled: process.env.ANALYZE === 'true' });
const nextTranslate = require('next-translate-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
rewrites: async () => {
return [
{
source: '/privacy-policy',
destination: '/privacy-policy.html',
},
];
},
redirects: async () => {
return [
{
source: '/faq',
destination: '/learn/faq',
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 };
return config;
},
};
const wrappedConfig = withBundleAnalyzer(nextTranslate(nextConfig));
module.exports = process.env.CHECK_CIRCULAR_DEPS ? withNextCircularDeps(wrappedConfig) : wrappedConfig;