-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.js
More file actions
20 lines (19 loc) · 628 Bytes
/
next.config.js
File metadata and controls
20 lines (19 loc) · 628 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
// Add external packages for server components
serverExternalPackages: [],
// Disable TypeScript type checking during build to allow Edge Function imports
typescript: {
// !! WARN !!
// This allows production builds to successfully complete even if
// your project has TypeScript errors.
ignoreBuildErrors: true,
},
};
module.exports = nextConfig;