Add a docker build step.
All checks were successful
Docker Build / Build and Push Backend Image (push) Successful in 12m34s
Docker Build / Build and Push Frontend Image (push) Successful in 5m56s
Check / Backend (pull_request) Successful in 7m7s
Check / Frontend (pull_request) Successful in 1m47s

This commit is contained in:
Drew 2025-09-27 20:28:17 -07:00
parent ff6837a751
commit 3246203805
10 changed files with 205 additions and 24 deletions

View file

@ -7,7 +7,7 @@ export default defineConfig({
server: {
proxy: {
"/api": {
target: "http://localhost:3000",
target: process.env.VITE_API_URL || "http://127.0.0.1:3000",
changeOrigin: true,
},
},