From 71b3e7a57568f8be1b871f07637e2585011a7f25 Mon Sep 17 00:00:00 2001 From: Nguyen Long Nhat <27698189+torn4dom4n@users.noreply.github.com> Date: Fri, 17 Nov 2023 23:55:17 +0700 Subject: [PATCH] disable contentCache --- astro.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/astro.config.ts b/astro.config.ts index 27d6ae6..e1bf0f8 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -8,9 +8,9 @@ import rehypeMathJax from 'rehype-mathjax' export default defineConfig({ site: process.env.CI ? 'https://area4.github.io' : 'http://localhost:4321', base: '/starlight-tailwind-template', - experimental: { - contentCollectionCache: true, - }, + // experimental: { + // contentCollectionCache: true, + // }, markdown: { remarkPlugins: [remarkMath], rehypePlugins: [rehypeMathJax],