11 lines
165 B
Batchfile
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
|