// This is the website part where people play and connect import { domain } from "./dns"; import { auth, api } from "./api"; new sst.aws.StaticSite("Web", { path: "./packages/www", build: { output: "./dist", command: "bun run build", }, domain: { dns: sst.cloudflare.dns(), name: "console." + domain }, environment: { VITE_API_URL: api.url, VITE_AUTH_URL: auth.url, VITE_STAGE: $app.stage, }, })