fix(web): default API port to 5212

This commit is contained in:
2026-04-14 12:54:36 -03:00
parent cc532ff319
commit 3b66415e17

View File

@@ -1,6 +1,6 @@
import axios from 'axios'
const API_URL = import.meta.env['VITE_API_URL'] ?? 'http://localhost:5000'
const API_URL = import.meta.env['VITE_API_URL'] ?? 'http://localhost:5212'
export const axiosClient = axios.create({
baseURL: API_URL,