fix bug build

This commit is contained in:
ehsan
2025-05-03 11:17:33 +03:30
parent 5df5ffc1f9
commit 6a805bc627
2 changed files with 11 additions and 7 deletions
+10 -7
View File
@@ -1,9 +1,12 @@
// next.config.js
const nextConfig = {
output: 'standalone',
// Add other configurations below
reactStrictMode: true,
swcMinify: true,
}
module.exports = nextConfig
output: "standalone",
// Add other configurations below
reactStrictMode: true,
swcMinify: true,
experimental: {
missingSuspenseWithCSRBailout: false,
},
};
module.exports = nextConfig;