Files
mech-ai/run_frontend.ps1
T
2026-07-17 17:45:56 +08:00

17 lines
274 B
PowerShell

$ErrorActionPreference = "Stop"
$Root = Split-Path -Parent $MyInvocation.MyCommand.Path
$Web = Join-Path $Root "web"
Push-Location $Web
try {
if (!(Test-Path (Join-Path $Web "node_modules"))) {
npm install
}
npm run dev
}
finally {
Pop-Location
}