10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
import path from 'path';
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
distDir: process.env.NODE_ENV === "production" ? "build" : "out",
|
|
typescript: {
|
|
ignoreBuildErrors: true
|
|
}
|
|
};
|
|
export default nextConfig; |