Share: sync

This commit is contained in:
Frank
2025-05-23 14:40:28 -04:00
committed by Dax Raad
parent 8cbd59296e
commit 34a2dcb80a
5 changed files with 36 additions and 28 deletions

View File

@@ -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",
},
})