14 lines
302 B
JavaScript
14 lines
302 B
JavaScript
import config from './gitprofile.config';
|
|
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('daisyui')],
|
|
daisyui: {
|
|
logs: false,
|
|
themes: [...config.themeConfig.themes, config.themeConfig.customTheme],
|
|
},
|
|
};
|