mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
16 lines
335 B
JavaScript
16 lines
335 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
[
|
|
'@fullhuman/postcss-purgecss',
|
|
{
|
|
content: [
|
|
'./pages/**/*.{js,jsx,ts,tsx}',
|
|
'./components/**/*.{js,jsx,ts,tsx}'
|
|
],
|
|
defaultExtractor: (content) => content.match(/[\w-/:]+(?<!:)/g) || [],
|
|
safelist: ['html', 'body']
|
|
}
|
|
]
|
|
]
|
|
}
|