build(typography): add Tailwind Typography plugin for markdown preview styles

- Install @tailwindcss/typography package
- Configure Typography plugin in tailwind.config.js
- Adds prose and dark:prose-invert classes for styled markdown output
This commit is contained in:
2026-02-06 16:53:22 -05:00
parent f7cec0af43
commit c7a82c4de8
3 changed files with 32 additions and 1 deletions

View File

@@ -6,5 +6,7 @@ export default {
theme: {
extend: {},
},
plugins: [],
plugins: [
require('@tailwindcss/typography'),
],
}