forked from HoagieClub/mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.js
More file actions
22 lines (22 loc) · 751 Bytes
/
next.config.js
File metadata and controls
22 lines (22 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = {
target: 'serverless',
env: {
AUTH0_SECRET: process.env.AUTH0_SECRET,
AUTH0_BASE_URL: process.env.AUTH0_BASE_URL,
AUTH0_ISSUER_BASE_URL: process.env.AUTH0_ISSUER_BASE_URL,
AUTH0_CLIENT_ID: process.env.AUTH0_CLIENT_ID,
AUTH0_CLIENT_SECRET: process.env.AUTH0_CLIENT_SECRET,
},
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
}