Restores linting/type-check locally
parent
b8b1b9a6d0
commit
0c8847fb87
|
@ -78,8 +78,13 @@ plugins.push(withAxiom);
|
||||||
/** @type {import("next").NextConfig} */
|
/** @type {import("next").NextConfig} */
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
i18n,
|
i18n,
|
||||||
|
/* We already do type check on GH actions */
|
||||||
|
typescript: {
|
||||||
|
ignoreBuildErrors: !!process.env.CI,
|
||||||
|
},
|
||||||
|
/* We already do linting on GH actions */
|
||||||
eslint: {
|
eslint: {
|
||||||
ignoreDuringBuilds: true,
|
ignoreDuringBuilds: !!process.env.CI,
|
||||||
},
|
},
|
||||||
experimental: {
|
experimental: {
|
||||||
images: {
|
images: {
|
||||||
|
|
Loading…
Reference in New Issue