watzon.tech/tailwind.config.mjs

10 lines
196 B
JavaScript
Raw Permalink Normal View History

2023-12-08 21:30:53 +00:00
/** @type {import('tailwindcss').Config} */
export default {
2023-12-09 00:46:05 +00:00
darkMode: 'class',
2023-12-08 21:30:53 +00:00
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
}