fix: update API_URL to use production endpoint
Build and deploy / build (push) Successful in 37s Details
Build and deploy / deploy (push) Successful in 24s Details

This commit is contained in:
Artem Kashaev 2025-12-01 15:44:48 +05:00
parent ffb4b1b2fe
commit c427c8390d
1 changed files with 1 additions and 1 deletions

View File

@ -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'