opencode/infra/desktop.ts

11 lines
205 B
TypeScript
Raw Normal View History

2025-09-15 15:53:21 +08:00
import { domain } from "./stage"
new sst.cloudflare.StaticSite("Desktop", {
domain: "desktop." + domain,
path: "packages/app",
build: {
2025-09-19 17:28:46 +08:00
command: "bun turbo build",
2025-09-15 15:53:21 +08:00
output: "./dist",
},
})