mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-11 00:05:36 +02:00
11 lines
288 B
TypeScript
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",
|
|
},
|
|
});
|