2020-08-22 15:01:04 +00:00
|
|
|
module.exports = {
|
|
|
|
future: {
|
|
|
|
removeDeprecatedGapUtilities: true,
|
|
|
|
},
|
2021-06-29 03:50:16 +00:00
|
|
|
purge: {
|
|
|
|
enabled: true,
|
|
|
|
layers: ['base', 'components', 'utilities'],
|
|
|
|
content: [
|
|
|
|
'../../../**/views/*.ex',
|
|
|
|
'../../../**/*.html.eex',
|
|
|
|
'../../../**/*.html.leex',
|
|
|
|
'../../../**/*.html.heex',
|
|
|
|
'./js/**/*.js'
|
|
|
|
]
|
|
|
|
},
|
2020-08-22 15:01:04 +00:00
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2020-09-08 14:20:48 +00:00
|
|
|
variants: {
|
|
|
|
backgroundColor: ['responsive', 'hover', 'focus', 'checked'],
|
|
|
|
},
|
2020-08-22 15:01:04 +00:00
|
|
|
plugins: [],
|
|
|
|
}
|