ysandler-work/tailwind.config.js
2025-05-08 11:23:51 -05:00

10 lines
237 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: [],
}