live_beats/assets/tailwind.config.js

17 lines
299 B
JavaScript
Raw Permalink Normal View History

2022-01-07 18:42:04 +00:00
// See the Tailwind configuration guide for advanced usage
// https://tailwindcss.com/docs/configuration
2022-05-13 18:52:19 +00:00
2021-09-02 18:00:57 +00:00
module.exports = {
2022-01-07 18:42:04 +00:00
content: [
2021-09-02 18:00:57 +00:00
'./js/**/*.js',
'../lib/*_web.ex',
2021-09-02 18:00:57 +00:00
'../lib/*_web/**/*.*ex'
],
theme: {
extend: {},
},
2021-09-03 13:57:15 +00:00
plugins: [
require('@tailwindcss/forms')
2022-01-07 18:42:04 +00:00
]
}