forked from decentldotland/ar.page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
40 lines (39 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
module.exports = {
reactStrictMode: true,
staticPageGenerationTimeout: 100,
// swcMinify: true,
images: {
domains: ['pz-prepnb.meson.network',
'arweave.net',
'assets.poap.xyz',
'cryptologos.cc',
'img.arweave.dev',
'lens.xyz',
'raw.githubusercontent.com',
'w7.pngwing.com',
'nftipfs.link',
'azimuth.network',
'metadata.ens.domains',
'pfp-pl.us',
'miladyaura.mypinata.cloud',
'lh3.googleusercontent.com',
'gateway.pinata.cloud',
'miladymaker.net',
'www.miladymaker.net',
'i.seadn.io',
'api.tiles.art',
'image-proxy.svc.prod.covalenthq.com',
'evmos.notion.site'
],
minimumCacheTTL: 60,
dangerouslyAllowSVG: true,
formats: ['image/avif', 'image/webp']
},
webpack: (config) => {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"]
});
return config;
}
}