-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathnext.config.js
70 lines (69 loc) · 1.56 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
59
60
61
62
63
64
65
66
67
68
69
70
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
{
protocol: "https",
hostname: "ipfs.io",
port: "",
pathname: "**",
},
{
protocol: "https",
hostname: "sock.cauldron.quest",
port: "",
pathname: "**",
},
{
protocol: "https",
hostname: "i.ibb.co",
port: "",
pathname: "**",
},
{
protocol: "https",
hostname: "gist.githubusercontent.com",
port: "",
pathname: "**",
},
{
protocol: "https",
hostname: "gist.github.com",
port: "",
pathname: "**",
},
{
protocol: "https",
hostname: "ipfs.pat.mn",
port: "",
pathname: "**",
},
{
protocol: "https",
hostname:
"bafybeiekc4wo27tmfi26zzujs3qfn2z5osncs74zzdr53l52apu2toswzm.ipfs.dweb.link",
port: "",
pathname: "**",
},
{
protocol: "https",
hostname:
"bafkreigyby3j4ue7oxw6ucpojflzbt24x7vik7rp2sjqnfme6d2cfyjdea.ipfs.nftstorage.link",
port: "",
pathname: "**",
},
{
protocol: "https",
hostname:
"bafybeidcjcoeafswct54nf2rhoejfbpbna3zn7tyybcimrcmcbdi5twi74.ipfs.nftstorage.link",
port: "",
pathname: "d44bf7822552d522802e7076dc9405f5e43151f0ac12b9f6553bda1ce8560002.png",
},
],
},
};
module.exports = nextConfig;