Update frontend command in Docker Compose to use 'dev' instead of 'start'

This commit is contained in:
Korzhavin Ivan 2025-04-24 23:09:18 +02:00
parent 00539ffcf4
commit 7ba0472a20
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ services:
- ./frontend/.env.local:/app/.env.local:ro
environment:
- NODE_ENV=production
command: ["npm", "run", "start"]
command: ["npm", "run", "dev"]
depends_on:
- backend