use ip for now instead of localhost

This commit is contained in:
2026-01-29 00:43:37 -05:00
parent f689689281
commit 3a66e3cd42
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ if (frontendExists) {
app.get('*', (req, res) => {
res.json({
message: "What's The Point API - Frontend running separately",
frontend: "http://localhost:5173"
frontend: "http://192.168.1.70:5173"
});
});
}

View File

@@ -44,7 +44,7 @@ services:
dockerfile: Dockerfile.dev
restart: unless-stopped
environment:
VITE_API_URL: http://localhost:4000/api
VITE_API_URL: http://192.168.1.70:4000/api
depends_on:
- backend
ports: