el.xwx.moe/tailwind.config.js
2023-11-20 12:53:15 -05:00

20 lines
393 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
// daisyui: {
// themes: ["light", "dark"],
// },
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// For the "layouts" directory
"./layouts/**/*.{js,ts,jsx,tsx}",
],
plugins: [
// require("daisyui")
],
};