27 lines
No EOL
543 B
JavaScript
27 lines
No EOL
543 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./app/components/**/*.{js,vue,ts}",
|
|
"./app/layouts/**/*.vue",
|
|
"./app/pages/**/*.vue",
|
|
"./app/plugins/**/*.{js,ts}",
|
|
"./app.vue",
|
|
"./app/**/*.vue"
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('daisyui'),
|
|
],
|
|
daisyui: {
|
|
themes: ["dark", "light", "night", "forest", "aqua", "winter"],
|
|
darkTheme: "dark",
|
|
base: true,
|
|
styled: true,
|
|
utils: true,
|
|
prefix: "",
|
|
logs: true,
|
|
themeRoot: ":root",
|
|
}
|
|
}
|