From 49834f5215d82055554fbd77dc0669d3aea74da2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gjermund=20H=C3=B8s=C3=B8ien=20Wiggen?= Date: Sun, 7 Jun 2026 22:05:30 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20API=20proxy=20=E2=80=94=20strip=20/api?= =?UTF-8?q?=20prefix=20in=20rewrite=20(backend=20routes=20don't=20use=20/a?= =?UTF-8?q?pi)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/next.config.ts b/web/next.config.ts index 959768f..2b8042b 100644 --- a/web/next.config.ts +++ b/web/next.config.ts @@ -5,7 +5,7 @@ const nextConfig: NextConfig = { return [ { source: '/api/:path*', - destination: 'http://127.0.0.1:9876/api/:path*', + destination: 'http://127.0.0.1:9876/:path*', }, ]; },