Files
keymanager/web/next.config.ts
T
domrichardson aaf154168e
Server Deploy / deploy (push) Successful in 2m16s
updates
2026-06-15 16:20:26 +01:00

26 lines
526 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`,
},
];
},
};
export default nextConfig;