8 lines
205 B
Batchfile
8 lines
205 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
echo [InfoGenie] 构建前端生产版本...
|
|
cd /d %~dp0infogenie-frontend
|
|
call npm run build
|
|
echo [InfoGenie] 构建完成,产物目录: infogenie-frontend\build\
|
|
pause
|