-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
31 lines (30 loc) · 887 Bytes
/
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
/** @type {import('next').NextConfig} */
const nextConfig = {
// prevent double render on dev mode, which causes 2 frames to exist
env: {
NEYNAR_API_KEY: process.env.NEYNAR_API_KEY,
VERCEL_TOKEN: process.env.VERCEL_TOKEN,
KV_NAMESPACE_ID: process.env.KV_NAMESPACE_ID,
KV_URL: process.env.KV_URL,
KV_REST_API_URL: process.env.KV_REST_API_URL,
KV_REST_API_TOKEN: process.env.KV_REST_API_TOKEN,
KV_REST_API_READ_ONLY_TOKEN: process.env.KV_REST_API_READ_ONLY_TOKEN,
QUICKINTEL_API_KEY: process.env.QUICKINTEL_API_KEY,
QUICKINTEL_API_QUICK_AUDIT_FULL_URL:
process.env.QUICKINTEL_API_QUICK_AUDIT_FULL_URL,
},
reactStrictMode: false,
images: {
remotePatterns: [
{
hostname: '*',
protocol: 'http',
},
{
hostname: '*',
protocol: 'https',
},
],
},
};
export default nextConfig;