active la compression gzip
This commit is contained in:
parent
b36d9dc858
commit
dcd89d9825
1 changed files with 11 additions and 5 deletions
|
|
@ -15,10 +15,16 @@ 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,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue