DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Users manualΒΆ

This extension will hook page generation and loop on all CSS file to see if a generation is needed.

The check is done by file extension, only scss and sass file are generated.

Only local files and files relative to TYPO3 base path are generated.

This extension is fully compatible with all TYPO3 feature such as compression, because the generation is done at very begining of page generation before anything else.

Example:

# Will be generated
page.includeCSS.styles = fileadmin/scss/styles.scss
page.includeCSS.base = EXT:myext/Resources/Public/Styles/base.scss

# Will NOT be generated
page.includeCSSLibs.styles = fileadmin/scss/styles.scss
page.includeCSSLibs.base = EXT:myext/Resources/Public/Styles/base.scss