16 lines
299 B
JavaScript
16 lines
299 B
JavaScript
// next.config.js
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
// Add other configurations below
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
experimental: {
|
|
missingSuspenseWithCSRBailout: false,
|
|
},
|
|
images: {
|
|
domains: ["back-dev.clinic-pro.ir"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|