Files
user-front/next.config.js
AmirHossein Mahmoodi 03ed807eaf use witel webapp builder
2023-12-10 15:08:10 +03:30

16 lines
300 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: [process.env.NEXT_PUBLIC_BASE_URL],
},
i18n: {
defaultLocale: 'fa',
locales: ['fa'],
localeDetection: false,
},
}
module.exports = nextConfig