14 lines
428 B
PowerShell
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
|