From f0cd60bf56d32723d798c5550b8b419b3804cb1a Mon Sep 17 00:00:00 2001 From: chan Date: Tue, 10 Feb 2026 10:03:39 +0900 Subject: [PATCH] =?UTF-8?q?=EB=AC=B8=EB=B2=95=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- userfront/lib/core/services/auth_proxy_service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userfront/lib/core/services/auth_proxy_service.dart b/userfront/lib/core/services/auth_proxy_service.dart index 8d0f5958..50658953 100644 --- a/userfront/lib/core/services/auth_proxy_service.dart +++ b/userfront/lib/core/services/auth_proxy_service.dart @@ -16,7 +16,7 @@ class AuthProxyService { static String get _baseUrl { final rawUrl = _envOrDefault('BACKEND_URL', 'https://sso.hmac.kr'); // 배포 환경에서 $ 기호나 공백이 섞여 들어오는 경우를 방지하기 위해 정제합니다. - return rawUrl.replaceAll('$', '').trim().replaceAll(RegExp(r'/$'), ''); + return rawUrl.replaceAll(r'$', '').trim().replaceAll(RegExp(r'/$'), ''); } static bool get _isProd { final env = _envOrDefault('APP_ENV', 'dev').toLowerCase();