1 2 3 4 5 6 7 8
/** @type {import('next').NextConfig} */ const nextConfig = { /** We already do linting and typechecking as separate tasks in CI */ eslint: { ignoreDuringBuilds: true }, typescript: { ignoreBuildErrors: true }, }; export default nextConfig;