Files
nobat724_front/next.config.js
T
2025-05-03 11:17:33 +03:30

13 lines
241 B
JavaScript

// next.config.js
const nextConfig = {
output: "standalone",
// Add other configurations below
reactStrictMode: true,
swcMinify: true,
experimental: {
missingSuspenseWithCSRBailout: false,
},
};
module.exports = nextConfig;