Files
nobat724_front/next.config.js
T
2026-06-05 21:05:07 +03:30

30 lines
647 B
JavaScript

// next.config.js
const nextConfig = {
// Add other configurations below
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'back-dev.clinic-pro.ir',
},
{
protocol: 'https',
hostname: 'clinic-pro-back.ddev.site',
},
],
},
env: {
// Make DEV_MODE available to the application
DEV_MODE: process.env.DEV_MODE,
},
// Additional configuration for better Docker support
trailingSlash: false,
compress: true,
poweredByHeader: false,
// Enable standalone output for Docker
output: 'standalone',
};
module.exports = nextConfig;