summaryrefslogtreecommitdiffhomepage
path: root/packages/web/config.mjs
blob: c13ed125fba3dd0fe9d0fc03e1cb0c2d7b9d6032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const stage = process.env.SST_STAGE || "dev"

export default {
  url: stage === "production"
    ? "https://opencode.ai"
    : `https://${stage}.opencode.ai`,
  console: stage === "production"
    ? "https://console.opencode.ai"
    : `https://console.${stage}.opencode.ai`,
  email: "[email protected]",
  socialCard: "https://social-cards.sst.dev",
  github: "https://github.com/sst/opencode",
  discord: "https://opencode.ai/discord",
  headerLinks: [
    { name: "Home", url: "/" },
    { name: "Docs", url: "/docs/" },
  ],
}