AWSCLOUD/next.config.mjs

10 lines
263 B
JavaScript
Raw Permalink Normal View History

2025-09-16 15:24:39 +08:00
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;