14 lines
253 B
JavaScript
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: [],
|
|
}
|