ysandler-work/tailwind.config.js
2025-04-25 14:38:06 -05:00

14 lines
253 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src /**/*.{jsx,tsx
}'
], // tell tailwind where to look
darkMode: ['selector', '[data-theme="dark"
]', '.dark'
],
theme: {
extend: {},
},
plugins: [],
}