peixue-dev/Archive/[一次性]切换到本地服务器-2026-02-01.bat

25 lines
637 B
Batchfile

@echo off
chcp 65001 >nul
echo ========================================
echo 切换到本地服务器并重新编译
echo ========================================
echo.
echo [1/3] 清除编译缓存...
cd peidu\uniapp
if exist unpackage\dist rmdir /s /q unpackage\dist
if exist .hbuilderx rmdir /s /q .hbuilderx
echo 缓存清除完成
echo.
echo [2/3] 重新编译小程序...
call npm run dev:mp-weixin
echo.
echo [3/3] 完成!
echo ========================================
echo 现在使用本地服务器: http://localhost:8089
echo 请在微信开发者工具中刷新项目
echo ========================================
pause