chore: delete dead code, fix tailwind dark mode, fix title and start.sh port

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-04 10:29:28 +08:00
parent bc8ccc1143
commit ac490d851a
13 changed files with 22 additions and 436 deletions

View File

@@ -1,10 +1,7 @@
#!/bin/bash
# 启动开发服务器
# 端口: 8000
# 监听: 0.0.0.0
# Start the Vite dev server.
# Port defaults to FRONTEND_PORT env var, or 5173 if unset (matches vite.config.ts default).
cd "$(dirname "$0")"
echo "Starting dev server on http://0.0.0.0:8001"
npx vite --host 0.0.0.0 --port 8001
PORT="${FRONTEND_PORT:-5173}"
echo "Starting dev server on http://0.0.0.0:${PORT}"
npx vite --host 0.0.0.0 --port "$PORT"