| 1 | const defaultTheme = require('tailwindcss/defaultTheme') |
| 2 | |
| 3 | module.exports = { |
| 4 | content: [ |
| 5 | './public/*.html', |
| 6 | './app/helpers/**/*.rb', |
| 7 | './app/javascript/**/*.js', |
| 8 | './app/views/**/*.{erb,haml,html,slim}' |
| 9 | ], |
| 10 | theme: { |
| 11 | extend: { |
| 12 | fontFamily: { |
| 13 | sans: ['Inter var', ...defaultTheme.fontFamily.sans], |
| 14 | }, |
| 15 | }, |
| 16 | }, |
| 17 | plugins: [ |
| 18 | require('@tailwindcss/forms'), |
| 19 | require('@tailwindcss/typography'), |
| 20 | require('@tailwindcss/container-queries'), |
| 21 | ] |
| 22 | } |