mirror of
https://0xacab.org/jvoisin/mat2-web.git
synced 2025-05-12 11:12:17 -04:00
14 lines
No EOL
466 B
JavaScript
14 lines
No EOL
466 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = (ctx) => ({
|
|
plugins: [
|
|
require('tailwindcss')(path.resolve(__dirname, 'tailwind.config.js')),
|
|
require('autoprefixer'),
|
|
ctx.env === 'production' && require('@fullhuman/postcss-purgecss')({
|
|
content: [
|
|
path.resolve(__dirname, 'templates/**/*.html')
|
|
],
|
|
defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || []
|
|
})
|
|
]
|
|
}) |