Files
WebUITest-RealProjecT/FrontEnd/build.bat
2025-11-25 20:14:41 +09:00

11 lines
165 B
Batchfile

@echo off
echo Building Frontend...
call npm run build
if %ERRORLEVEL% NEQ 0 (
echo Build Failed!
pause
exit /b %ERRORLEVEL%
)
echo Build Success!
pause