From 690cc37ee25dad7535b545e1a2251da85326cbfc Mon Sep 17 00:00:00 2001 From: ayoayco Date: Sun, 25 Aug 2024 14:09:21 +0200 Subject: [PATCH] feat: exclude route /threads for caching --- astro.config.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index afd055a..5ab908e 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -11,9 +11,9 @@ export default defineConfig({ path: './src/sw.mjs', assetCachePrefix: 'ayco-personal-site', logAssets: true, - // excludeRoutes: [ - // '/threads' - // ], + excludeRoutes: [ + '/threads' + ], esbuild: { minify: true }