mirror of
https://github.com/katanemo/plano.git
synced 2026-04-29 10:56:35 +02:00
13 lines
233 B
JavaScript
13 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: [],
|
||
|
|
}
|