mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-03 20:11:30 +01:00
build: ignore ESLint errors for Production build
It improves performance when extra checking is not necessary.
This commit is contained in:
parent
f04d8a0c11
commit
c0508dc0b9
@ -2,6 +2,9 @@
|
||||
const nextConfig = {
|
||||
reactStrictMode: true,
|
||||
output: 'standalone',
|
||||
eslint: {
|
||||
ignoreDuringBuilds: true
|
||||
},
|
||||
experimental: {
|
||||
serverActions: true
|
||||
}
|
||||
|
@ -3,6 +3,7 @@
|
||||
"compilerOptions": {
|
||||
"target": "ESNext",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Node",
|
||||
"lib": ["dom", "dom.iterable", "ESNext"],
|
||||
"allowJs": true,
|
||||
"baseUrl": ".",
|
||||
@ -11,7 +12,6 @@
|
||||
},
|
||||
"types": ["cypress"],
|
||||
"noEmit": true,
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"jsx": "preserve",
|
||||
"incremental": true,
|
||||
|
Loading…
Reference in New Issue
Block a user