tailwind.config.js 234 B

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