t3 / css-coverage
Installs: 44
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 1
Open Issues: 1
Type:typo3-cms-extension
Requires
- php: >=7.4
- ext-dom: *
- sabberworm/php-css-parser: ^8.3.1
- symfony/css-selector: ^5.3
- symfony/dom-crawler: ^5.3
- typo3/cms-core: ^10.4 || ^11.0
Replaces
- typo3-ter/css-coverage: *
This package is auto-updated.
Last update: 2024-10-10 01:54:55 UTC
README
TYPO3 CMS extension which checks used CSS selectors in HTML output of the current page and removes CSS declarations which are unused.
This increases the CSS code coverage dramatically and reduces the overall page load. Perfectly suited for one pagers!
Experimental
Installation
Include the TypoScript shipped in EXT:css_coverage in your TypoScript template.
This is the default setup:
plugin.tx_csscoverage {
enabled = 1
debug = 1
excluded {
# Exclude any files you want, like here external resources
1 = http://*
2 = https://*
}
selectorWildcards {
# Here define selectors, set dynamically by javascript
1 = .show
2 = .fade
10 = .popover*
}
}
When debug is enabled, it displays in HTML comments like this:
<!-- Saved 2.2KB in /typo3temp/assets/css/8015c8c4ac.css --> <!-- Saved 84.4KB in /assets/style.css -->