Files
xiaoxia-saas/start-web.ps1
T
Xiaoxia AI e819f6f89b
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 24m57s
feat: 添加简化版认证API和配置文件
2026-06-20 11:29:46 +08:00

14 lines
428 B
PowerShell

# 小虾 SaaS - 前端服务启动脚本
Write-Host "=== 启动小虾 SaaS 前端服务 ===" -ForegroundColor Green
# 切换到 Web 目录
Set-Location F:\openclaw-saas\apps\web
# 启动 Vite 开发服务器
Write-Host "`n启动 Vite 开发服务器..." -ForegroundColor Yellow
Write-Host "访问地址: http://localhost:5173" -ForegroundColor Cyan
Write-Host "`n按 Ctrl+C 停止服务`n" -ForegroundColor Gray
npm run dev