Files
user-front/next.config.js
2023-07-10 10:48:53 +03:30

13 lines
208 B
JavaScript

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