tailwind.config.js 282 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 /** @type {import('tailwindcss').Config} */ export default { content: [ './app/views/**/*.html.erb', './app/frontend/**/*.{js,jsx,ts,tsx}', ], theme: { extend: {}, }, plugins: [ require('@tailwindcss/forms'), require('@tailwindcss/typography'), ], }