mirror of
https://github.com/jcreek/LivingDexTracker.git
synced 2026-07-12 18:43:45 +00:00
12 lines
269 B
JavaScript
12 lines
269 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/routes/**/*.{svelte,js,ts}', './src/lib/components/**/*.{svelte,js,ts}'],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [require('daisyui')],
|
|
daisyui: {
|
|
themes: ['light', 'dark', 'dracula']
|
|
}
|
|
};
|