8 lines
144 B
Batchfile
8 lines
144 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
echo 构建前端项目...
|
|
cd mengyamonitor-frontend
|
|
echo 正在安装依赖...
|
|
call npm install
|
|
npm run build
|