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/postcss.config.js

16 lines
379 B
JavaScript
Raw Permalink Normal View History

2019-03-24 20:30:22 +00:00
module.exports = {
2019-08-12 00:56:21 +00:00
plugins: [
2019-08-12 01:23:33 +00:00
require('postcss-import'),
2019-08-12 00:56:21 +00:00
require('tailwindcss'),
require('autoprefixer'),
process.env.NODE_ENV === 'production' && require('@fullhuman/postcss-purgecss')({
content: [
'./src/**/*.vue',
'./public/index.html',
],
defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || []
})
]
2019-03-24 20:30:22 +00:00
}
2019-08-12 00:56:21 +00:00