This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
rebuilding-bartik/purgecss.config.js
2020-03-16 09:34:53 +00:00

11 lines
222 B
JavaScript

let glob = require('glob-all')
module.exports = {
defaultExtractor: content => content.match(/[\w-/:]+(?<!:)/g) || [],
paths: () => glob.sync([
'public/index.html'
]),
whitelist: [],
whitelistPatterns: []
}