-
Notifications
You must be signed in to change notification settings - Fork 1
/
next.config.mjs
37 lines (36 loc) · 970 Bytes
/
next.config.mjs
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
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
forceSwcTransforms: true
},
env: {
DEVNET_API_BASE_URL: process.env.DEVNET_API_BASE_URL,
MAINNET_API_BASE_URL: process.env.MAINNET_API_BASE_URL,
PLAYHT_API_KEY: process.env.PLAYHT_API_KEY,
PLAYHT_USER_ID: process.env.PLAYHT_USER_ID,
SOLEXPRLORER_NODE_API_BASE_URL: process.env.SOLEXPRLORER_NODE_API_BASE_URL,
NEXT_PUBLIC_SUPABASE_URL: process.env.NEXT_PUBLIC_SUPABASE_URL,
NEXT_PUBLIC_SUPABASE_ANON_KEY: process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'raw.githubusercontent.com',
},
{
protocol: 'https',
hostname: 'arweave.net',
},
{
protocol: 'https',
hostname: 'static.jup.ag',
},
{
protocol: 'https',
hostname: 'wormhole.com',
},
],
},
};
export default nextConfig;