mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
20 lines
386 B
TypeScript
20 lines
386 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
compiler: {
|
|
removeConsole: process.env.NODE_ENV === "production",
|
|
},
|
|
experimental: {
|
|
nodeMiddleware: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|