You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
286 B
11 lines
286 B
@echo off
|
|
chcp 65001 >nul
|
|
:: 前端开发服务启动脚本
|
|
:: 用法:
|
|
:: dev.bat 同时启动 web + mall
|
|
:: dev.bat web 仅启动健康APP
|
|
:: dev.bat mall 仅启动商城
|
|
:: dev.bat --kill 仅关闭端口占用进程
|
|
|
|
cd /d "%~dp0.."
|
|
node scripts\dev.js %*
|
|
|