Files
beaver_project/app-instance/frontend/next.config.js
2026-03-13 16:40:08 +08:00

12 lines
274 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
distDir: process.env.NODE_ENV === 'development' ? '.next-dev' : '.next',
output: 'standalone',
eslint: {
ignoreDuringBuilds: true,
},
images: { unoptimized: true },
};
module.exports = nextConfig;