2022-11-21 11:10:04 +01:00
|
|
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
'./public/*.html',
|
|
|
|
'./app/helpers/**/*.rb',
|
|
|
|
'./app/javascript/**/*.js',
|
2022-11-29 00:13:46 +01:00
|
|
|
'./app/views/**/*.{erb,haml,html,slim}' ,
|
2022-12-02 14:14:57 +01:00
|
|
|
'./merged/app/**/*.{erb,haml,html,slim,rb}'
|
2022-11-21 11:10:04 +01:00
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/forms'),
|
|
|
|
require('@tailwindcss/aspect-ratio'),
|
|
|
|
require('@tailwindcss/typography'),
|
|
|
|
]
|
|
|
|
}
|