-
Notifications
You must be signed in to change notification settings - Fork 4
/
next.config.js
45 lines (44 loc) · 1.06 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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
env: {
NEXT_PUBLIC_ENV_TAG: process.env.NEXT_PUBLIC_ENV_TAG,
ARBITRUM_FORK_URL: process.env.ARBITRUM_FORK_URL,
NEXT_PUBLIC_TENDERLY_FORK_ID: process.env.NEXT_PUBLIC_TENDERLY_FORK_ID,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '/i.pravatar.cc',
port: '',
pathname: '/150/**',
},
{
protocol: 'https',
hostname: 'assets.coingecko.com',
port: '',
pathname: '/coins/images/**',
},
{
protocol: 'https',
hostname: 'storage.googleapis.com',
port: '',
pathname: '/zapper-fi-assets/tokens/**',
},
{
protocol: 'https',
hostname: 'raw.githubusercontent.com',
port: '',
pathname: 'trustwallet/assets/**',
},
{
protocol: 'https',
hostname: 'dashboard.mypinata.cloud',
port: '',
pathname: '/ipfs/**',
},
],
},
};
module.exports = nextConfig;