tailwind.config.js 407 B

123456789101112131415161718
  1. /** @type {import('tailwindcss').Config} */
  2. // import rtl from 'tailwindcss-rtl';
  3. // import flip from 'tailwindcss-flip';
  4. export default {
  5. content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
  6. theme: {
  7. extend: {},
  8. },
  9. // plugins: [rtl, flip],
  10. corePlugins: {
  11. preflight: false,
  12. },
  13. future: {
  14. hoverOnlyWhenSupported: true,
  15. },
  16. darkMode: 'class',
  17. };