1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
const {
iconsPlugin,
getIconCollections,
} = require("@egoist/tailwindcss-icons");
module.exports = {
content: ["**/*.templ"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
mono: ["Courier Prime", "monospace"],
},
},
},
plugins: [
require("daisyui"),
iconsPlugin({
collections: getIconCollections(["ic", "mdi"]),
}),
],
daisyui: {},
};
|