mirror of
https://github.com/sst/opencode.git
synced 2025-08-22 14:04:07 +00:00
5 lines
186 B
TypeScript
5 lines
186 B
TypeScript
export const domain = (() => {
|
|
if ($app.stage === "production") return "opencode.ai"
|
|
if ($app.stage === "dev") return "dev.opencode.ai"
|
|
return `${$app.stage}.dev.opencode.ai`
|
|
})()
|