mirror of
https://codeberg.org/Sevichecc/Seigwai.git
synced 2025-04-30 07:49:30 +08:00
16 lines
426 B
JavaScript
16 lines
426 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const { iconsPlugin, getIconCollections } = require('@egoist/tailwindcss-icons')
|
|
module.exports = {
|
|
content: ['**/*.tsx', '**/*.ts', '**/*.vue', '**/*.html'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
require('daisyui'),
|
|
iconsPlugin({
|
|
collections: getIconCollections(['mdi', 'lucide']),
|
|
}),
|
|
],
|
|
}
|