summaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
Diffstat (limited to 'infra')
-rw-r--r--infra/app.ts9
-rw-r--r--infra/desktop.ts2
2 files changed, 10 insertions, 1 deletions
diff --git a/infra/app.ts b/infra/app.ts
index 7215995ba..da4ac45b8 100644
--- a/infra/app.ts
+++ b/infra/app.ts
@@ -44,3 +44,12 @@ new sst.cloudflare.x.Astro("Web", {
VITE_API_URL: api.url.apply((url) => url!),
},
})
+
+new sst.cloudflare.StaticSite("App", {
+ domain: "app." + domain,
+ path: "packages/app",
+ build: {
+ command: "bun turbo build",
+ output: "./dist",
+ },
+})
diff --git a/infra/desktop.ts b/infra/desktop.ts
index d4e32c65d..5c4155cc9 100644
--- a/infra/desktop.ts
+++ b/infra/desktop.ts
@@ -2,7 +2,7 @@ import { domain } from "./stage"
new sst.cloudflare.StaticSite("Desktop", {
domain: "desktop." + domain,
- path: "packages/desktop",
+ path: "packages/app",
build: {
command: "bun turbo build",
output: "./dist",