-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.mjs
46 lines (39 loc) · 1.08 KB
/
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
38
39
40
41
42
43
44
45
46
/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
webpack: (config) => {
config.externals.push('pino-pretty', 'lokijs', 'encoding');
return config;
},
env: {
NEXT_PUBLIC_APP_LINK: '',
// World Coin
NEXT_PUBLIC_APP_ID: '',
// Dynamic Connection
ENVIRONMENTAL_ID: '',
// Docusign App
API_ACCOUNT_ID: '',
INTEGRATION_KEY: '',
SECRET_KEY: '',
// Docusign Forms
PARCEL_DELIVERY_FORM_ID: '',
PRE_DELIVERY_AGREEMENT_TEMPLATE_ID: '',
CLICK_WRAP_ID: '',
DELIVERY_COMPLETION_ID: '',
DELIVERY_ACKNOWLEDGEMENT_ID: '',
// Pinata
PINATA_JWT:
'',
NEXT_PUBLIC_PINATA_ENDPOINT: '',
// Attestation
INFURA_API: '',
NEXT_PUBLIC_SCHEMA_ID: '',
},
};
export default nextConfig;