13 lines
261 B
Batchfile
13 lines
261 B
Batchfile
@echo off
|
|
cd /d "%~dp0frontend"
|
|
echo [System] Starting Vite frontend...
|
|
echo [System] URL: http://localhost:5173
|
|
echo.
|
|
if not exist "node_modules" (
|
|
echo [Warn] node_modules not found. Run install.bat first.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
call npm run dev
|
|
pause
|