summaryrefslogtreecommitdiffhomepage
path: root/app/infra
diff options
context:
space:
mode:
Diffstat (limited to 'app/infra')
-rw-r--r--app/infra/app.ts22
1 files changed, 11 insertions, 11 deletions
diff --git a/app/infra/app.ts b/app/infra/app.ts
index a331f14eb..1a97740f4 100644
--- a/app/infra/app.ts
+++ b/app/infra/app.ts
@@ -23,14 +23,14 @@ export const api = new sst.cloudflare.Worker("Api", {
},
})
-//new sst.cloudflare.StaticSite("Web", {
-// path: "packages/web",
-// environment: {
-// VITE_API_URL: api.url,
-// },
-// errorPage: "fallback.html",
-// build: {
-// command: "bun run build",
-// output: "dist/client",
-// },
-//})
+new sst.cloudflare.StaticSite("Web", {
+ path: "packages/web",
+ environment: {
+ VITE_API_URL: api.url,
+ },
+ errorPage: "fallback.html",
+ build: {
+ command: "bun run build",
+ output: "dist/client",
+ },
+})