mirror of
https://github.com/sst/opencode.git
synced 2025-08-30 09:47:25 +00:00
docs: dynamic domain
This commit is contained in:
parent
c51de945a5
commit
facd851b11
4 changed files with 7 additions and 5 deletions
|
@ -39,6 +39,7 @@ new sst.cloudflare.x.Astro("Web", {
|
|||
domain,
|
||||
path: "packages/web",
|
||||
environment: {
|
||||
// For astro config
|
||||
SST_STAGE: $app.stage,
|
||||
VITE_API_URL: api.url,
|
||||
},
|
||||
|
|
|
@ -9,12 +9,13 @@ import { rehypeHeadingIds } from "@astrojs/markdown-remark"
|
|||
import rehypeAutolinkHeadings from "rehype-autolink-headings"
|
||||
|
||||
const github = "https://github.com/sst/opencode"
|
||||
|
||||
console.log("stage", process.env.SST_STAGE)
|
||||
const stage = process.env.SST_STAGE || "dev"
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
site: config.url,
|
||||
site: stage === "production"
|
||||
? `https://${config.domain}`
|
||||
: `https://${stage}.${config.domain}`,
|
||||
output: "server",
|
||||
adapter: cloudflare({
|
||||
imageService: "passthrough",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
export default {
|
||||
url: "https://opencode.ai",
|
||||
domain: "opencode.ai",
|
||||
socialCard: "https://social-cards.sst.dev",
|
||||
github: "https://github.com/sst/opencode",
|
||||
discord: "https://discord.gg/opencode",
|
||||
|
|
|
@ -13,7 +13,7 @@ const {
|
|||
const isDocs = slug.startsWith("docs")
|
||||
|
||||
let encodedTitle = '';
|
||||
let ogImage = `${config.url}/social-share.png`;
|
||||
let ogImage = `https://${config.domain}/social-share.png`;
|
||||
let truncatedDesc = '';
|
||||
|
||||
if (isDocs) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue