Restores linting/type-check locally

This commit is contained in:
zomars 2022-08-30 15:24:17 -06:00
parent b8b1b9a6d0
commit 0c8847fb87

View File

@ -78,8 +78,13 @@ plugins.push(withAxiom);
/** @type {import("next").NextConfig} */
const nextConfig = {
i18n,
/* We already do type check on GH actions */
typescript: {
ignoreBuildErrors: !!process.env.CI,
},
/* We already do linting on GH actions */
eslint: {
ignoreDuringBuilds: true,
ignoreDuringBuilds: !!process.env.CI,
},
experimental: {
images: {