All color and font definitions live in layout.css via Tailwind 4 @theme. Keeping only the content glob in the config file. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
5 lines
109 B
JavaScript
5 lines
109 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}']
|
|
};
|