diff --git a/astro.config.mjs b/astro.config.mjs index b658603..23c267e 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -15,11 +15,17 @@ export default defineConfig({ domains: ["images.unsplash.com"], }, prefetch: true, - integrations: [tailwind(), sitemap(), compressor({ - gzip: false, - brotli: true, - }), mdx(), react()], + integrations: [ + tailwind(), + sitemap(), + compressor({ + gzip: true, + brotli: true, + }), + mdx(), + react(), + ], experimental: { clientPrerender: true, }, -}); \ No newline at end of file +});