### Begin: Compression via TYPO3 ###
# Compressing resource files will save bandwidth and so improve loading speed especially for users
# with slower internet connections. TYPO3 can compress the .js and .css files for you.
# *) Uncomment the following lines and
# *) Set $TYPO3_CONF_VARS['BE']['compressionLevel'] = '9' for the Backend
# *) Set $TYPO3_CONF_VARS['FE']['compressionLevel'] = '9' together with the TypoScript properties
# config.compressJs=1 and config.compressCss=1 in typoscript for GZIP compression of Frontend JS and CSS files.
AddType "text/javascript" .gzip
AddType "text/css" .gzip
AddEncoding gzip .gzip
### End: Compression via TYPO3 ###