tailwind.config.cjs 227 B

1234567891011
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [
  4. './app/**/*.{js,ts,jsx,tsx}',
  5. './pages/**/*.{js,ts,jsx,tsx}',
  6. './components/**/*.{js,ts,jsx,tsx}',
  7. ],
  8. theme: {
  9. extend: {},
  10. },
  11. };