change redirect

This commit is contained in:
2026-04-20 16:29:58 +01:00
parent e166ad8a84
commit f4928bd9f9
+2 -1
View File
@@ -1,4 +1,5 @@
import type { NextConfig } from "next";
import { env } from "@/lib/env";
const nextConfig: NextConfig = {
output: "standalone",
@@ -19,7 +20,7 @@ const nextConfig: NextConfig = {
return [
{
source: "/api/:path*",
destination: "http://localhost:3001/:path*",
destination: env.API_URL+"/:path*",
},
];
},