legendary-doc-site/apps/app/assets/tailwind.config.js

24 lines
466 B
JavaScript
Raw Normal View History

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: {},
},
variants: {
backgroundColor: ['responsive', 'hover', 'focus', 'checked'],
},
2020-08-22 15:01:04 +00:00
plugins: [],
}