summaryrefslogtreecommitdiffhomepage
path: root/infra/stage.ts
blob: c1239832b759c765a35b6cf9fbe28c9d7aeec67a (plain)
1
2
3
4
5
export const domain = (() => {
  if ($app.stage === "production") return "opencode.ai"
  if ($app.stage === "dev") return "dev.opencode.ai"
  return `${$app.stage}.dev.opencode.ai`
})()