diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index be8771b..432bef5 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -170,6 +170,13 @@ export default defineConfig({ clientPort: 443, }, }), + proxy: process.env.API_PROXY_TARGET + ? { + "/api": { target: process.env.API_PROXY_TARGET }, + "/mcp": { target: process.env.API_PROXY_TARGET }, + "/health": { target: process.env.API_PROXY_TARGET }, + } + : undefined, }, },