active la compression gzip

This commit is contained in:
Jalil Arfaoui 2025-01-05 22:37:44 +01:00
parent b36d9dc858
commit dcd89d9825

View file

@ -15,10 +15,16 @@ export default defineConfig({
domains: ["images.unsplash.com"], domains: ["images.unsplash.com"],
}, },
prefetch: true, prefetch: true,
integrations: [tailwind(), sitemap(), compressor({ integrations: [
gzip: false, tailwind(),
sitemap(),
compressor({
gzip: true,
brotli: true, brotli: true,
}), mdx(), react()], }),
mdx(),
react(),
],
experimental: { experimental: {
clientPrerender: true, clientPrerender: true,
}, },