opencode/infra/desktop.ts

11 lines
209 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,
2025-10-03 22:04:28 +08:00
path: "packages/desktop",
2025-09-15 15:53:21 +08:00
build: {
2025-09-19 17:28:46 +08:00
command: "bun turbo build",
2025-09-15 15:53:21 +08:00
output: "./dist",
},
})