13 lines
263 B
JavaScript
13 lines
263 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
presets: [
|
|
|
|
|
|
]
|
|
}
|