1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 05:55:53 +02:00
.profile/next.config.js
Théo LUDWIG fdab2a7ea8
build: ignore ESLint and TypeScript errors for Production build
It improves performance when extra checking is not necessary.
2023-09-14 11:49:52 +02:00

17 lines
283 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
typescript: {
ignoreBuildErrors: true
},
eslint: {
ignoreDuringBuilds: true
},
experimental: {
serverActions: true
}
}
module.exports = nextConfig