blog/tailwind.config.mjs

9 lines
176 B
JavaScript
Raw Normal View History

2024-09-29 21:39:19 +02:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
}