7 lines
146 B
Batchfile
7 lines
146 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
echo 启动前端开发服务器...
|
|
cd mengyanote-frontend
|
|
echo 正在安装依赖...
|
|
call npm install
|
|
npm run dev |