Files
website/tailwind.config.mjs

11 lines
254 B
JavaScript
Raw Normal View History

2024-03-09 22:41:35 +00:00
import typography from "@tailwindcss/typography"
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [typography],
}