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

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