From dcb30a410ca84f475790218907ed25e4e890ebcf Mon Sep 17 00:00:00 2001 From: Joe Kendall Date: Wed, 15 Nov 2023 15:11:22 -0500 Subject: [PATCH] changing the output location of astro generated assets to work with noop routing --- astro.config.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index e58e925..1653a5f 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -5,7 +5,10 @@ import tailwind from '@astrojs/tailwind' // https://astro.build/config export default defineConfig({ build: { - inlineStylesheets: 'always' + inlineStylesheets: 'always', + format: "file", + assets: 'assets/docs/_astro' }, + integrations: [tailwind(), pagefind()] })