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