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