mirror of
https://github.com/samanhappy/mcphub.git
synced 2025-12-24 02:39:19 -05:00
12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
darkMode: 'class', // Use class strategy for dark mode
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
} |