From: Julien Déramond Date: Mon, 14 Apr 2025 17:56:44 +0000 (+0200) Subject: Add `build` property to Astro config to change the location of the built assets X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b8f7c7c665cca10605a2832ebdf68594d541fc2;p=thirdparty%2Fbootstrap.git Add `build` property to Astro config to change the location of the built assets --- 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,