opencode_offline/packages/web/config.mjs

15 lines
508 B
JavaScript
Raw Normal View History

2025-07-08 04:36:52 +08:00
const stage = process.env.SST_STAGE || "dev"
2025-06-21 01:22:31 +08:00
export default {
2025-09-10 11:43:37 +08:00
url: stage === "production" ? "https://opencode.ai" : `https://${stage}.opencode.ai`,
console: stage === "production" ? "https://opencode.ai/auth" : `https://${stage}.opencode.ai/auth`,
2025-09-03 05:28:32 +08:00
email: "contact@anoma.ly",
2025-06-28 08:03:17 +08:00
socialCard: "https://social-cards.sst.dev",
2025-06-21 01:22:31 +08:00
github: "https://github.com/sst/opencode",
2025-07-10 07:55:06 +08:00
discord: "https://opencode.ai/discord",
2025-06-21 01:22:31 +08:00
headerLinks: [
{ name: "Home", url: "/" },
{ name: "Docs", url: "/docs/" },
],
}