We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ed2791 commit 15b595dCopy full SHA for 15b595d
README.md
@@ -44,7 +44,8 @@ By default Purgecss will look for css selectors in your `.html` files inside the
44
```javascript
45
let config = {
46
content: ['./public/**/*.html', './src/**/*.vue'],
47
- defaultExtractor: content => content.match(/[A-z0-9-_:/]+/g),
+ defaultExtractor: content =>
48
+ content.match(/[A-Za-z0-9-_/:]*[A-Za-z0-9-_/]+/g) || [],
49
};
50
```
51
You can extend/override the default config in your PostCSS configuration.
0 commit comments