18 lines
374 B
JavaScript
18 lines
374 B
JavaScript
import CONFIG from './gitprofile.config';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('daisyui')],
|
|
daisyui: {
|
|
logs: false,
|
|
themes: [
|
|
...CONFIG.themeConfig.themes,
|
|
{ procyon: CONFIG.themeConfig.customTheme },
|
|
],
|
|
},
|
|
};
|