20 lines
402 B
Batchfile
20 lines
402 B
Batchfile
@echo off
|
|
echo ========================================
|
|
echo Starting Family Hub Frontend
|
|
echo ========================================
|
|
echo.
|
|
|
|
cd frontend
|
|
|
|
if not exist node_modules (
|
|
echo ERROR: Node modules not found!
|
|
echo Please run setup.bat first
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo Starting Vite dev server on http://localhost:5173
|
|
echo Press Ctrl+C to stop the server
|
|
echo.
|
|
call npm run dev
|