Spaces:
Sleeping
Sleeping
File size: 424 Bytes
01f0120 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
typescript: {
// Warning: This allows production builds to successfully complete even if
// your project has type errors.
ignoreBuildErrors: true,
},
};
export default nextConfig; |