[Vuejs]-Tailwind class conflicts when used in Markdown with vitepress

0👍

If you want Tailwind classes to have more priority over the default classes in VitePress, consider adding the important option in the tailwind.config.js file:

module.exports = { important: true}

See the tailwind docs for reference.

Leave a comment