aboutsummaryrefslogtreecommitdiffstats
path: root/apps/landing/next.config.mjs
blob: 743e4d69f9e0ecd224a76b396d5f1a4ba54ee791 (plain) (blame)
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;