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