Initial commit

This commit is contained in:
2026-03-03 19:26:22 +03:00
commit c1f94439ab
167 changed files with 23898 additions and 0 deletions

21
next.config.ts Normal file
View File

@@ -0,0 +1,21 @@
import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const nextConfig: NextConfig = {
output: 'standalone',
experimental: {
optimizePackageImports: ["@chakra-ui/react"],
},
reactCompiler: true,
async rewrites() {
return [
{
source: "/api/backend/:path*",
destination: "http://localhost:3000/api/:path*",
},
];
},
};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);