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