feat: fix vite url using env var

This commit is contained in:
2025-06-25 20:25:33 -04:00
parent c0eae42daf
commit 385da3d2b2
4 changed files with 13 additions and 5 deletions
+5 -4
View File
@@ -1,5 +1,3 @@
version: '3.8'
services:
db:
image: postgres:15
@@ -37,8 +35,11 @@ services:
- app-network
frontend:
build: ./frontend
env_file: ./.env
build:
context: ./frontend
args:
VITE_API_URL: ${API_URL}
ports:
- "3000:80"
depends_on: