mirror of
https://github.com/vcscsvcscs/GenerationsHeritage.git
synced 2025-08-14 06:49:05 +02:00
14 lines
315 B
TypeScript
14 lines
315 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
daisyui: {
|
|
themes: ['light', 'dark', 'cyberpunk', 'synthwave', 'retro', 'roboto', 'dracula']
|
|
},
|
|
plugins: [require('tailwindcss'), require('autoprefixer')]
|
|
} satisfies Config;
|