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