Files
mengyadriftbottle/build_frontend.bat

10 lines
179 B
Batchfile

@echo off
chcp 65001 >nul
echo 构建前端项目...
cd mengyadriftbottle-frontend
if not exist node_modules (
echo 正在安装依赖...
call npm install
)
npm run build