16 lines
298 B
JavaScript
16 lines
298 B
JavaScript
|
// See the Tailwind configuration guide for advanced usage
|
||
|
// https://tailwindcss.com/docs/configuration
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
'./js/**/*.js',
|
||
|
'../lib/*_web.ex',
|
||
|
'../lib/*_web/**/*.*ex'
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [
|
||
|
require('@tailwindcss/forms')
|
||
|
]
|
||
|
}
|