Files
mengyakeyvault/build_frontend.bat
2026-03-11 21:15:06 +08:00

10 lines
185 B
Batchfile

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