From 4b8f7c7c665cca10605a2832ebdf68594d541fc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20D=C3=A9ramond?= Date: Mon, 14 Apr 2025 19:56:44 +0200 Subject: [PATCH] Add `build` property to Astro config to change the location of the built assets --- site/astro.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/site/astro.config.ts b/site/astro.config.ts index 4af106602a..6460f12f5e 100644 --- a/site/astro.config.ts +++ b/site/astro.config.ts @@ -18,6 +18,9 @@ const site = isDev // https://astro.build/config export default defineConfig({ + build: { + assets: `docs/${getConfig().docs_version}/assets` + }, integrations: [bootstrap()], markdown: { smartypants: false,