2022-08-30 18:05:21 +00:00
|
|
|
module.exports = {
|
2022-09-09 22:46:53 +00:00
|
|
|
content: ["./app.vue", "./{components,pages,layouts}/**/*.{vue,js,ts,jsx,tsx}"],
|
|
|
|
darkMode: "class", // or 'media' or 'class'
|
2022-09-01 22:32:03 +00:00
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2022-09-09 22:46:53 +00:00
|
|
|
plugins: [require("@tailwindcss/aspect-ratio"), require("@tailwindcss/typography"), require("daisyui")],
|
2022-08-30 18:05:21 +00:00
|
|
|
};
|