Files
netris-nestri/cloud/infra/urls.ts
2025-09-27 10:25:13 +03:00

11 lines
288 B
TypeScript

import { domain } from "./stage";
export const urls = new sst.Linkable("Urls", {
properties: {
api: "https://api." + domain,
auth: "https://auth." + domain,
site: $dev ? "http://localhost:4321" : "https://" + domain,
openapi: "https://api." + domain + "/doc",
},
});