akkounts/tailwind.config.js
2022-02-21 11:03:43 -06:00

21 lines
413 B
JavaScript

module.exports = {
content: [
'./app/assets/stylesheets/components/**/*.css',
'./app/components/**/*.html.erb',
'./app/components/**/*.rb',
'./app/views/**/*.html.erb',
'./app/helpers/**/*.rb',
'./app/javascript/**/*.js'
],
theme: {
extend: {
fontFamily: {
sans: ['Open Sans', 'sans-serif']
}
},
},
plugins: [
require('@tailwindcss/forms')
],
}