tailwind.config.js 223 B

123456789101112
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. darkMode: 'selector',
  4. content: [
  5. "./index.html",
  6. "./src/**/*.{js,ts,jsx,tsx}",
  7. ],
  8. theme: {
  9. extend: {},
  10. },
  11. plugins: [],
  12. }