rDrama/postcss.config.js

15 lines
461 B
JavaScript
Raw Normal View History

2021-11-25 21:47:51 +00:00
const path = require('path');
module.exports = (ctx) => ({
plugins: [
require('tailwindcss')(path.resolve(__dirname, 'tailwind.config.js')),
require('autoprefixer'),
2021-11-25 22:01:09 +00:00
//require('@fullhuman/postcss-purgecss')({
// content: [
// path.resolve(__dirname, 'templates/**/*.html'),
// path.resolve(__dirname, 'templates/*.html')
// ],
// defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || []
//})
2021-11-25 21:47:51 +00:00
],
});