13 lines
243 B
JavaScript
13 lines
243 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
purge: [
|
|
// Templates within theme app (e.g. base.html)
|
|
'../templates/**/*.html',
|
|
// Templates in other apps
|
|
'../../templates/**/*.html',
|
|
],
|
|
}
|