From fff9593153f3ebf61d6fe8ae848a58fcd80b5e2e Mon Sep 17 00:00:00 2001 From: vratskyi Date: Fri, 1 Mar 2024 18:41:53 +0200 Subject: [PATCH] Project adapter build settings does not consider nested paths #7 --- astro.config.mjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index f7c0449..e3e461e 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -41,7 +41,11 @@ export default defineConfig({ mode: 'directory', functionPerRoute: true, routes: { - strategy: 'include' + strategy: 'include', + include: [ + '/en/blog/*', + '/ru/blog/*' + ] } }) }); \ No newline at end of file