mirror of
https://github.com/katanemo/plano.git
synced 2026-06-20 15:28:07 +02:00
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class', // ✅ Add this line
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
"./public/index.html",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|