legendary-doc-site/apps/app/assets/tailwind.config.js
2021-06-28 22:50:16 -05:00

23 lines
466 B
JavaScript

module.exports = {
future: {
removeDeprecatedGapUtilities: true,
},
purge: {
enabled: true,
layers: ['base', 'components', 'utilities'],
content: [
'../../../**/views/*.ex',
'../../../**/*.html.eex',
'../../../**/*.html.leex',
'../../../**/*.html.heex',
'./js/**/*.js'
]
},
theme: {
extend: {},
},
variants: {
backgroundColor: ['responsive', 'hover', 'focus', 'checked'],
},
plugins: [],
}