Urara-Blog/tailwind.config.ts
2022-12-08 20:34:21 +08:00

12 lines
466 B
TypeScript

import { theme } from './src/lib/config/general'
// @ts-ignore Could not find a declaration file for module '@tailwindcss/typography'.
import typography from '@tailwindcss/typography'
// @ts-ignore Could not find a declaration file for module 'daisyui'.
import daisyui from 'daisyui'
export default {
content: ['./src/**/*.{html,md,js,svelte,ts}'],
theme: { extend: {} },
plugins: [typography, daisyui],
daisyui: { themes: theme.map(({ name }) => name) }
}