#typography no longer works with astro 5.2 tailwind 4 integration

2 messages · Page 1 of 1 (latest)

violet anchorBOT
#

Hi @south hearth. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:

#

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:

  1. Ensure you have the latest versions of both Astro and the Tailwind integration installed. You can upgrade using the following command:

    npx @astrojs/upgrade
    

    Upgrade Astro

  2. Make sure you have properly configured the Tailwind plugin in your tailwind.config.mjs file. The Typography plugin should be added to the plugins array:

    /** @type {import('tailwindcss').Config} */
    export default {
      // ...
      plugins: [
        require('@tailwindcss/typography'),
        // ...
      ],
    }
    

    Tailwind CSS

  3. 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.

If the problem persists, it might be worth checking for any known issues or recent changes in the Astro or Tailwind repositories, or considering filing an issue on the Astro GitHub repository.

Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: