Update to domain-based configuration with HTTPS

This commit is contained in:
oguz ozturk 2026-01-10 13:31:26 +03:00
parent e036139490
commit 4d5565f0a0
2 changed files with 3 additions and 1 deletions

2
frontend/.env.production Normal file
View File

@ -0,0 +1,2 @@
VITE_API_URL=https://api.argeict.net

View File

@ -1,6 +1,6 @@
import axios from 'axios'
const API_BASE_URL = import.meta.env.VITE_API_URL || 'http://176.96.129.77:5000'
const API_BASE_URL = import.meta.env.VITE_API_URL || 'https://api.argeict.net'
const api = axios.create({
baseURL: API_BASE_URL,