import defaultTheme from 'tailwindcss/defaultTheme' import forms from '@tailwindcss/forms' /** @type {import('tailwindcss').Config} */ export default { content: [ './public/*.html', './app/helpers/**/*.rb', './app/views/**/*', './app/javascript/**/*.vue', ], theme: { extend: { fontFamily: { sans: ['Inter', ...defaultTheme.fontFamily.sans], }, }, }, plugins: [forms], }