From c0f0026c76311cbf59ccad6d492f4c7263b30921 Mon Sep 17 00:00:00 2001 From: Michael Freeman Date: Thu, 27 Feb 2025 00:49:34 -0600 Subject: [PATCH] removing hardcoded backend address --- web/next.config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/next.config.ts b/web/next.config.ts index cbd7263..b4e292b 100644 --- a/web/next.config.ts +++ b/web/next.config.ts @@ -3,8 +3,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, async rewrites() { - // const backendUrl = process.env.BACKEND_URL || 'http://localhost:8090'; - const backendUrl = process.env.BACKEND_URL || 'http://172.233.208.210:8090'; + const backendUrl = process.env.BACKEND_URL || 'http://localhost:8090'; return [ { source: '/api/:path*',