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