cloudaxe-opencode/packages/web/config.mjs

15 lines
533 B
JavaScript
Raw Permalink 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`,
2026-06-09 23:31:54 +00:00
email: "help@anoma.ly",
2025-06-28 00:03:17 +00:00
socialCard: "https://social-cards.sst.dev",
github: "https://github.com/anomalyco/opencode",
2025-07-09 23:55:06 +00:00
discord: "https://opencode.ai/discord",
2025-06-20 17:22:31 +00:00
headerLinks: [
2026-02-09 17:34:35 +00:00
{ name: "app.header.home", url: "/" },
{ name: "app.header.docs", url: "/docs/" },
2025-06-20 17:22:31 +00:00
],
}