mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-10-31 21:48:49 +00:00
16 lines
299 B
JavaScript
16 lines
299 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')
|
|
]
|
|
}
|