another step for constructing base project

This commit is contained in:
hamid
2026-06-17 22:53:49 +03:30
parent 5b4c0d183f
commit 5388bea320
76 changed files with 3836 additions and 1961 deletions
+5 -11
View File
@@ -1,16 +1,10 @@
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts');
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export', // Use this if you want to create "static generated website" (SSG), result in "/out" folder
trailingSlash: true,
images: { unoptimized: true },
env: {
// Add custom build-time env variables here, also check .env.* files
},
reactStrictMode: true,
// reactStrictMode: false,
};
export default nextConfig;
export default withNextIntl(nextConfig);