Disabled ESLint during builds

This commit is contained in:
Marcus Blättermann 2022-11-17 16:56:13 +01:00
parent 978045b36b
commit a5d573095f
No known key found for this signature in database
GPG Key ID: A1E1F04008AC450D

View File

@ -18,6 +18,9 @@ const nextConfig = withMDX({
reactStrictMode: true,
swcMinify: true,
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'],
eslint: {
ignoreDuringBuilds: true,
},
})
export default nextConfig