Files
vue3-element-admin/tailwind.config.js
haoxr 6749c10cfc feat: 整合tailwindcss
Former-commit-id: 9f7aa8245149c0e45790277d4780dc93dbe1c495
2022-12-31 22:04:00 +08:00

16 lines
278 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
backgroundColor: theme => ({
...theme('colors'),
"sidebar-logo":'#2b2f3a'
})
},
plugins: [],
}