2023-01-22 15:39:35 -06:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2023-05-28 12:22:01 -05:00
|
|
|
|
2023-01-22 15:39:35 -06:00
|
|
|
module.exports = {
|
2023-08-02 12:53:55 -05:00
|
|
|
darkMode: "class",
|
2023-11-20 11:48:41 -06:00
|
|
|
// daisyui: {
|
|
|
|
// themes: ["light", "dark"],
|
|
|
|
// },
|
2023-01-22 15:39:35 -06:00
|
|
|
content: [
|
|
|
|
"./app/**/*.{js,ts,jsx,tsx}",
|
|
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
2023-05-28 12:22:01 -05:00
|
|
|
|
|
|
|
// For the "layouts" directory
|
|
|
|
"./layouts/**/*.{js,ts,jsx,tsx}",
|
2023-01-22 15:39:35 -06:00
|
|
|
],
|
2023-11-20 11:48:41 -06:00
|
|
|
plugins: [require("daisyui")],
|
2023-01-22 15:39:35 -06:00
|
|
|
};
|