mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-04-27 14:29:31 +07:00
17 lines
355 B
JavaScript
17 lines
355 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"node_modules/daisyui/dist/**/*.js",
|
|
"node_modules/react-daisyui/dist/**/*.js",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("daisyui")],
|
|
daisyui: {
|
|
themes: require("./src/app/themes").themes,
|
|
},
|
|
};
|