From f9c3fc537981c83ec8c56d068f8ee648be07e1cb Mon Sep 17 00:00:00 2001 From: domrichardson <100129001+domrichardson@users.noreply.github.com> Date: Tue, 16 Jun 2026 09:57:03 +0100 Subject: [PATCH] updates --- web/next.config.ts | 38 +++++++++++++++++++++----------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/web/next.config.ts b/web/next.config.ts index a7eecc9..35be982 100644 --- a/web/next.config.ts +++ b/web/next.config.ts @@ -3,23 +3,27 @@ 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`, - }, - ]; - }, + 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: "/update", + destination: `${apiUrl}/update`, + }, + ]; + }, }; export default nextConfig;