profile/tailwind.config.js
2022-03-18 23:48:35 +06:00

11 lines
185 B
JavaScript

module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {},
},
plugins: [require('daisyui')],
daisyui: {
logs: false,
},
};