Habe nun mal mit GULP ein wenig herumexperimentiert und versucht eine min.css.gz Datei zu erstellen - dies im TypoScript hinterlegt und die NGINX Directive dahingehend angepasst
// Add mime-type for compressed css files.
location ~ .css.gzip {
// gzip off and add_header only, if you gzip in Pipeline or by TYPO3 compression
add_header Content-Encoding gzip;
gzip off;
types {
text/css gzip;
}
}
Leider sieht dann bei der Ausgabe die CSS Datei in der Vorschau dann so aus
Der Antwortender spuckt auch keine Komprimierung aus, wenn ich das richtig sehe.
Hatte jmd. schon mal so ein "Problem" und weiß evtl. Rat?
Vielen Dank