blog/tailwind.config.js

12 lines
205 B
JavaScript
Raw Normal View History

2024-05-23 15:37:43 -04:00
import typography from "npm:@tailwindcss/typography";
export default {
mode: "jit",
darkMode: "media",
content: ["./**/*.{html,md,njk}"],
theme: {
extend: {},
},
2024-05-23 15:37:43 -04:00
plugins: [typography],
};