updates
Server Deploy / deploy (push) Successful in 34s

This commit is contained in:
domrichardson
2026-06-16 09:57:03 +01:00
parent f62b0054db
commit f9c3fc5379
+21 -17
View File
@@ -3,23 +3,27 @@ import type { NextConfig } from "next";
const apiUrl = process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:8080"; const apiUrl = process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:8080";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
output: "standalone", output: "standalone",
async rewrites() { async rewrites() {
return [ return [
{ {
source: "/api/:path*", source: "/api/:path*",
destination: `${apiUrl}/api/:path*`, destination: `${apiUrl}/api/:path*`,
}, },
{ {
source: "/auth/:path*", source: "/auth/:path*",
destination: `${apiUrl}/auth/:path*`, destination: `${apiUrl}/auth/:path*`,
}, },
{ {
source: "/install", source: "/install",
destination: `${apiUrl}/install`, destination: `${apiUrl}/install`,
}, },
]; {
}, source: "/update",
destination: `${apiUrl}/update`,
},
];
},
}; };
export default nextConfig; export default nextConfig;