Rename tailwind.config file

This commit is contained in:
Ariful Alam
2022-08-21 17:01:42 +06:00
parent a65bbf2937
commit 970044b7f1
4 changed files with 3 additions and 3 deletions

16
tailwind.config.mjs Normal file
View File

@@ -0,0 +1,16 @@
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,
{ procyon: config.themeConfig.customTheme },
],
},
};