17 lines
344 B
JavaScript
17 lines
344 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["Pages/**/*.cshtml", "Components/**/*.razor"],
|
|
theme: {
|
|
extend: {
|
|
|
|
}
|
|
},
|
|
plugins: [require("daisyui"), require('@tailwindcss/typography')],
|
|
daisyui: {
|
|
logs: false,
|
|
themes: [
|
|
"light", "dark"
|
|
]
|
|
}
|
|
}
|