Files
vantage/web/next.config.ts
T
mrhid6 bf96dba50e
Server Deploy / deploy (push) Successful in 1m28s
fix: Fixed install ps1 script handler
2026-07-17 14:45:19 +01:00

34 lines
860 B
TypeScript

import type { NextConfig } from "next";
const apiUrl = process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:8080";
const nextConfig: NextConfig = {
output: "standalone",
async rewrites() {
return [
{
source: "/api/:path*",
destination: `${apiUrl}/api/:path*`,
},
{
source: "/auth/:path*",
destination: `${apiUrl}/auth/:path*`,
},
{
source: "/install",
destination: `${apiUrl}/install`,
},
{
source: "/install.ps1",
destination: `${apiUrl}/install.ps1`,
},
{
source: "/update",
destination: `${apiUrl}/update`,
},
];
},
};
export default nextConfig;