mirror of
https://github.com/MetaCubeX/metacubexd.git
synced 2024-11-10 05:15:35 +08:00
12 lines
316 B
TypeScript
12 lines
316 B
TypeScript
import daisyui from 'daisyui'
|
|
import { Config } from 'tailwindcss'
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
import safeArea from 'tailwindcss-safe-area'
|
|
|
|
export default {
|
|
content: ['./src/**/*.{css,tsx}'],
|
|
plugins: [daisyui, safeArea],
|
|
daisyui: { themes: true },
|
|
} as Config
|