Azure deployment setup

This commit is contained in:
2026-04-14 21:29:00 -06:00
parent aa9f3ad444
commit 316f6f45ed
10 changed files with 263 additions and 65 deletions

View File

@@ -1,11 +1,12 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
reactCompiler: true,
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://localhost:8080/api/:path*",
destination: `${process.env.BACKEND_URL || "http://localhost:8080"}/api/:path*`,
},
];
},