Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

react-markdown渲染时防止被tailwindcss影响样式 #876

Open
klren0312 opened this issue Dec 17, 2024 · 0 comments
Open

react-markdown渲染时防止被tailwindcss影响样式 #876

klren0312 opened this issue Dec 17, 2024 · 0 comments
Labels
React React相关问题

Comments

@klren0312
Copy link
Owner

安装 Tailwind 的 Typography 插件

https://tailwindcss.com/docs/typography-plugin

pnpm add -D @tailwindcss/typography

配置tailwind.config.js

module.exports = {
    theme: {
    },
    variants: {},
    plugins: [
      require('@tailwindcss/typography')
    ]
}

给组件加上className='prose'

<Markdown className='prose'>{markdownSource}</Markdown>
@klren0312 klren0312 added the React React相关问题 label Dec 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
React React相关问题
Projects
None yet
Development

No branches or pull requests

1 participant