- Install @tailwindcss/typography package - Configure Typography plugin in tailwind.config.js - Adds prose and dark:prose-invert classes for styled markdown output
13 lines
181 B
JavaScript
13 lines
181 B
JavaScript
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
}
|