Files
LivingDexTracker/tailwind.config.js
T
Josh Creek 16a067cd5d fix(#16): Ensure DaisyUI styles apply to components
It turns out that tailwind excludes styles it hasn't found in use, so it needs to be explicitly told where to find the component files. This also therefore fixes the styles in the SignUp component.
2024-04-07 19:19:08 +01:00

9 lines
214 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')]
};