feat: 本機新增頁面與導覽調整

This commit is contained in:
2026-07-27 17:45:20 +08:00
parent 14a0724679
commit 295f18d567
27 changed files with 2967 additions and 9 deletions
+28
View File
@@ -0,0 +1,28 @@
@echo off
chcp 65001 >nul
cd /d "%~dp0"
echo.
echo ═══════════════════════════════════════
echo 水晶男孩推廣部 — 本地預覽
echo 網址:http://127.0.0.1:5501
echo 關閉此視窗 = 停止預覽
echo ═══════════════════════════════════════
echo.
where py >nul 2>&1
if %errorlevel%==0 (
start "" "http://127.0.0.1:5501/index.html"
py -m http.server 5501
goto :eof
)
where python >nul 2>&1
if %errorlevel%==0 (
start "" "http://127.0.0.1:5501/index.html"
python -m http.server 5501
goto :eof
)
echo [錯誤] 找不到 Python。請安裝 Python 後再試,或使用 CursorCtrl+Shift+P →「預覽網站」
pause