-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.js
More file actions
31 lines (30 loc) · 791 Bytes
/
next.config.js
File metadata and controls
31 lines (30 loc) · 791 Bytes
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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
// Common NFT image hosts and IPFS gateways — add domains as needed for your data sources
domains: [
'ipfs.io',
'nftstorage.link',
'res.cloudinary.com',
'lh3.googleusercontent.com',
'pbs.twimg.com',
'cdn.discordapp.com',
'static.opensea.io',
'opensea.io',
'images.unsplash.com',
'raw.githubusercontent.com',
'storage.googleapis.com',
],
remotePatterns: [
// Allow common ipfs subdomains (CID-based) and https patterns — adjust as needed
{
protocol: 'https',
hostname: 'i.seadn.io',
port: '',
pathname: '/**',
},
],
},
}
module.exports = nextConfig;