13 lines
272 B
JavaScript
13 lines
272 B
JavaScript
const { i18n } = require('./next-i18next.config');
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
trailingSlash: true,
|
|
images: {
|
|
unoptimized: true // ✅ disables server-side image optimization
|
|
},
|
|
i18n,
|
|
output: 'standalone',
|
|
};
|
|
|
|
module.exports = nextConfig;
|