cloudaxe-opencode/packages/web/config.mjs

15 lines
508 B
JavaScript
Raw Normal View History

2025-07-07 20:36:52 +00:00
const stage = process.env.SST_STAGE || "dev"
2025-06-20 17:22:31 +00:00
export default {
2025-09-10 03:43:37 +00: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-02 21:28:32 +00:00
email: "contact@anoma.ly",
2025-06-28 00:03:17 +00:00
socialCard: "https://social-cards.sst.dev",
2025-06-20 17:22:31 +00:00
github: "https://github.com/sst/opencode",
2025-07-09 23:55:06 +00:00
discord: "https://opencode.ai/discord",
2025-06-20 17:22:31 +00:00
headerLinks: [
{ name: "Home", url: "/" },
{ name: "Docs", url: "/docs/" },
],
}