Files
portabase/next.config.mjs
T

29 lines
603 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
typescript: {
//TODO fix all type errors and remove 'ignoreBuildErrors'
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
// bundlePagesRouterDependencies: true,
compiler: {
removeConsole: {
exclude: ['error'],
},
},
};
export default nextConfig;