first commit

This commit is contained in:
mega 2026-03-19 11:32:17 +00:00
commit 4b98219bf7
144 changed files with 31561 additions and 0 deletions

16
frontend/next.config.ts Normal file
View file

@ -0,0 +1,16 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
async rewrites() {
const backendUrl = process.env.BACKEND_INTERNAL_URL ?? "http://localhost:8000";
return [
{
source: "/api/backend/:path*",
destination: `${backendUrl}/:path*`,
},
];
},
};
export default nextConfig;