blob: 5c4155cc9a1bf2c6b330cc0d5ae9f4d32cb1952e (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { domain } from "./stage"
new sst.cloudflare.StaticSite("Desktop", {
domain: "desktop." + domain,
path: "packages/app",
build: {
command: "bun turbo build",
output: "./dist",
},
})
|