From 4e92d27cb1b2e097654e3bc88662eca590b60940 Mon Sep 17 00:00:00 2001 From: Jiang Bohan Date: Wed, 13 May 2026 13:22:59 +0800 Subject: [PATCH] fix(docs): use dotenv code block lang to unblock Vercel build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Shiki's default bundle doesn't include the `env` grammar, so MDX prerendering fails with `Language `env` is not included in this bundle.` The two pages added in #2474 used ```env, which broke both Preview and Production deployments of multica-docs. Swap the language tag to `dotenv` (Shiki ships it by default) — same visual result, no Shiki config change needed. Refs MUL-2122 Co-authored-by: multica-agent --- apps/docs/content/docs/github-integration.mdx | 2 +- apps/docs/content/docs/github-integration.zh.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/docs/content/docs/github-integration.mdx b/apps/docs/content/docs/github-integration.mdx index d6dc24a5d..7816d2994 100644 --- a/apps/docs/content/docs/github-integration.mdx +++ b/apps/docs/content/docs/github-integration.mdx @@ -111,7 +111,7 @@ After **Create GitHub App**, note two things from the App's detail page: On the API server: -```env +```dotenv GITHUB_APP_SLUG=multica-acme GITHUB_WEBHOOK_SECRET= ``` diff --git a/apps/docs/content/docs/github-integration.zh.mdx b/apps/docs/content/docs/github-integration.zh.mdx index 19f38e80c..2e1064014 100644 --- a/apps/docs/content/docs/github-integration.zh.mdx +++ b/apps/docs/content/docs/github-integration.zh.mdx @@ -111,7 +111,7 @@ Self-Host 需要:建一个 GitHub App、指向你的 server、设两个环境 API server 上: -```env +```dotenv GITHUB_APP_SLUG=multica-acme GITHUB_WEBHOOK_SECRET=<你刚生成的 webhook secret> ```