mirror of
https://codeberg.org/Sevichecc/Seigwai.git
synced 2025-04-30 07:49:30 +08:00
16 lines
441 B
TypeScript
16 lines
441 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
import { getIconCollections, iconsPlugin } from '@egoist/tailwindcss-icons'
|
|
import typography from '@tailwindcss/typography'
|
|
import daisyui from 'daisyui'
|
|
|
|
export default {
|
|
content: ['**/*.{js,ts,jsx,tsx}', '**/*.vue', '**/*.html'],
|
|
darkMode: 'class',
|
|
plugins: [
|
|
typography,
|
|
daisyui,
|
|
iconsPlugin({
|
|
collections: getIconCollections(['tabler']),
|
|
}),
|
|
],
|
|
} satisfies Config
|