janahan-law/next.config.js
2025-08-18 12:25:06 +05:30

12 lines
248 B
JavaScript

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