diff options
| author | Frank <[email protected]> | 2025-05-23 14:40:28 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-26 12:40:17 -0400 |
| commit | 34a2dcb80a28e208c986d39ce1e145f245691f62 (patch) | |
| tree | 6f5e4450c05fc2e10d5dcd3e8458ba3aff981335 /app/infra | |
| parent | 8cbd59296e8510cb590b162d7548872fabf16c10 (diff) | |
| download | opencode-34a2dcb80a28e208c986d39ce1e145f245691f62.tar.gz opencode-34a2dcb80a28e208c986d39ce1e145f245691f62.zip | |
Share: sync
Diffstat (limited to 'app/infra')
| -rw-r--r-- | app/infra/app.ts | 22 |
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", + }, +}) |
