This commit is contained in:
Your Name
2026-07-17 09:24:47 +08:00
commit 530e7f839d
4353 changed files with 731879 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
@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