mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-04-30 04:09:29 +08:00
12 lines
466 B
TypeScript
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) }
|
|
}
|