From ae278a84eec66335dd9388dcb352ed46655be7f9 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Mon, 30 Mar 2026 19:53:03 +0200 Subject: [PATCH] Change prefetch strategy Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> --- astro.config.mjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index cbe8345..44ee462 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -14,5 +14,9 @@ export default defineConfig({ integrations: [mdx()], vite: { plugins: [tailwindcss()] - } + }, + prefetch: { + prefetchAll: false, + defaultStrategy: 'tap' + }, });