mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
export const domain = (() => {
|
|
if ($app.stage === "production") return "nestri.io"
|
|
if ($app.stage === "dev") return "nestri.io"
|
|
return `${$app.stage}.dev.nestri.io`
|
|
})()
|