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