From c427c8390d8f28ff35fadfe37449f70d617de38e Mon Sep 17 00:00:00 2001 From: Artem Kashaev Date: Mon, 1 Dec 2025 15:44:48 +0500 Subject: [PATCH] fix: update API_URL to use production endpoint --- frontend/src/config/env.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/config/env.ts b/frontend/src/config/env.ts index cfc2ef9..953682a 100644 --- a/frontend/src/config/env.ts +++ b/frontend/src/config/env.ts @@ -1,4 +1,4 @@ -const API_URL = import.meta.env.VITE_API_URL?.replace(/\/$/, '') || 'http://localhost:8000' +const API_URL = import.meta.env.VITE_API_URL?.replace(/\/$/, '') || 'https://kitchen-crm.k1nq.tech' const API_PREFIX = '/api/v1' const APP_NAME = 'Kitchen CRM' const ORG_HEADER = 'X-Organization-Id'