main
Some checks failed
Deploy Frontend / build-and-deploy (push) Failing after 19h27m44s

This commit is contained in:
2026-02-07 01:52:31 +03:00
parent 73c2a2a2e7
commit a8236e8783
30 changed files with 94 additions and 168 deletions

View File

@@ -2,6 +2,7 @@ import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const nextConfig: NextConfig = {
output: 'standalone',
experimental: {
optimizePackageImports: ["@chakra-ui/react"],
},
@@ -10,7 +11,7 @@ const nextConfig: NextConfig = {
return [
{
source: "/api/backend/:path*",
destination: "http://localhost:3000/api/:path*",
destination: `${process.env.INTERNAL_API_URL || "http://localhost:3000"}/api/:path*`,
},
];
},