#typography no longer works with astro 5.2 tailwind 4 integration
2 messages · Page 1 of 1 (latest)
I apologize, but I don't have specific information about Tailwind's Typography plugin not working with Astro 5.2 and Tailwind 4 integration. The knowledge sources provided don't contain details about this particular issue or its solution.
However, I can offer some general advice based on the information available:
-
Ensure you have the latest versions of both Astro and the Tailwind integration installed. You can upgrade using the following command:
npx @astrojs/upgrade -
Make sure you have properly configured the Tailwind plugin in your
tailwind.config.mjsfile. The Typography plugin should be added to thepluginsarray:/** @type {import('tailwindcss').Config} */ export default { // ... plugins: [ require('@tailwindcss/typography'), // ... ], } -
If you're still experiencing issues, you might want to check the Astro Integration Documentation for troubleshooting tips or the Astro Discord community for support.