From 046d95c5b368c0f35bd8e26cc41a6b78af734563 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Fri, 13 Dec 2024 17:28:39 -0800 Subject: [PATCH] web: change hardcoded dev address --- 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 8cb3c98..4ec807c 100644 --- a/web/next.config.ts +++ b/web/next.config.ts @@ -7,7 +7,7 @@ const nextConfig: NextConfig = { return [ { source: "/v1/submissions/1/status/:statustype", - destination: "http://localhost:8081/v1/submissions/:statustype" + destination: "http://localhost:8082/v1/submissions/:statustype" } ] }