| 123456789101112131415161718 |
- /** @type {import('tailwindcss').Config} */
- // import rtl from 'tailwindcss-rtl';
- // import flip from 'tailwindcss-flip';
- export default {
- content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
- theme: {
- extend: {},
- },
- // plugins: [rtl, flip],
- corePlugins: {
- preflight: false,
- },
- future: {
- hoverOnlyWhenSupported: true,
- },
- darkMode: 'class',
- };
|