forked from ZuzaluSoftwareBuilder/ZuzaluCityOS
-
Notifications
You must be signed in to change notification settings - Fork 3
/
next.config.js
48 lines (47 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
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'framerusercontent.com',
pathname: '/images/**',
port: '',
},
{
protocol: 'https',
hostname: 'nftstorage.link',
pathname: '**',
port: '',
},
{
protocol: 'https',
hostname: 'scarlet-binding-hummingbird-437.mypinata.cloud',
pathname: '/ipfs/**',
port: '',
},
// https://gateway.lighthouse.storage
{
protocol: 'https',
hostname: 'gateway.lighthouse.storage',
pathname: '/ipfs/**',
port: '',
},
{
protocol: 'https',
hostname:
'bafkreifje7spdjm5tqts5ybraurrqp4u6ztabbpefp4kepyzcy5sk2uel4.ipfs.nftstorage.link',
pathname: '**',
port: '',
},
{
protocol: 'https',
hostname: 'pub-d00cee3ff1154a18bdf38c29db9a51c5.r2.dev',
pathname: '**',
port: '',
},
],
},
swcMinify: false,
};
export default nextConfig;