diff --git a/.vitepress/config.mts b/.vitepress/config.mts index 68f47eac..5bcac033 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -5,7 +5,7 @@ import markdownItKatex from "markdown-it-katex"; export default defineConfig({ lang: "en-US", title: "docs", - //base: "/sora-docs/", + base: "/sora-docs/", description: "Guides, how-tos, architecture", head: [["meta", { name: "keywords", content: "SORA ecosystem" }]], themeConfig: { diff --git a/vercel.json b/vercel.json index 9fd60cdb..0d64aef9 100644 --- a/vercel.json +++ b/vercel.json @@ -1,5 +1,5 @@ { "rewrites": [ - { "source": "(.*)", "destination": "/$1" } + { "source": "/sora-docs/(.*)", "destination": "/sora-docs/$1" } ] }