feat: add production environment variables and update Gitea workflow for deployment
All checks were successful
Main Build & Deploy / Build and Push Docker Image (amd64 and arm64) (push) Successful in 2m59s
Main Build & Deploy / Deploy Live (push) Successful in 5s

This commit is contained in:
2025-02-16 11:47:28 -03:00
parent 1f2a71452b
commit 2487076e92
4 changed files with 16 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ import { ApiConfig } from './types';
// API configuration
export const apiConfig: ApiConfig = {
baseURL: import.meta.env.VITE_API_BASE_URL || 'http://localhost:5278',
baseURL: import.meta.env.VITE_API_BASE_URL || 'VITE_API_BASE_URL',
timeout: 10000, // 10 seconds
headers: {
'Content-Type': 'application/json',