-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
54 lines (53 loc) · 1.09 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
/** @type {import('next').NextConfig} */
export default {
compiler: {
styledComponents: true,
},
images: {
remotePatterns: [
{
hostname: "mattoapi.blob.core.windows.net",
pathname: "/**",
protocol: "https",
},
{
hostname: "127.0.0.1",
pathname: "/**",
protocol: "http",
},
{
hostname: "arweave.net",
pathname: "/dtEayxAD2Aknd8g8WWyErEX37kesMRsJhbopwDYPhdo/**",
protocol: "https",
},
],
unoptimized: true,
},
output: "standalone",
reactStrictMode: true,
redirects() {
return [
{
destination: "/",
permanent: true,
source: "/project",
},
{
destination: "/project/:slug",
permanent: true,
source: "/project/:slug/token",
},
];
},
swcMinify: true,
webpack(config) {
config.module.rules.push({
issuer: /\.[jt]sx?$/,
test: /\.svg$/i,
use: ["@svgr/webpack"],
});
// Web3Modal
config.externals.push("pino-pretty", "lokijs", "encoding");
return config;
},
};