Files
agent-evals/frontend/tailwind.config.js
Evan Reichard 6e9d26fbeb fix(frontend): add tailwind typography plugin for markdown styling
Install @tailwindcss/typography package and configure it in
tailwind.config.js to properly style rendered markdown content.
The prose class now applies correct styles to headings, lists,
code blocks, and other markdown elements.
2026-02-06 09:01:32 -05:00

15 lines
246 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
}