website/next.config.mjs
Amirhossein Shaerpour 6f5431456f
feat: Build app for production environments
Signed-off-by: shaerpour <amirhosseinshaerpour1@gmail.com>
2025-01-20 18:17:48 +03:30

11 lines
207 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
i18n: {
locales: ['en', 'fa'],
defaultLocale: 'fa'
},
reactStrictMode: true,
output: "standalone"
};
export default nextConfig;