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-07-08 04:36:52 +08:00
|
|
|
url: stage === "production"
|
|
|
|
|
? "https://opencode.ai"
|
|
|
|
|
: `https://${stage}.opencode.ai`,
|
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/" },
|
|
|
|
|
],
|
|
|
|
|
}
|