perf: switch inlineStylesheets to auto to avoid inlining Leaflet CSS

This commit is contained in:
2026-07-25 19:28:55 +02:00
parent 0c61483d10
commit 97cbe25871
+1 -1
View File
@@ -10,6 +10,6 @@ export default defineConfig({
site: 'https://www.eivissaenvironmentalwatch.es',
integrations: [preact(), sitemap()],
build: {
inlineStylesheets: 'always', // menos peticiones = menos energía por visita
inlineStylesheets: 'auto', // inline CSS pequeños, externos los grandes (ej. Leaflet)
},
});