TailwindCSS v4.0: Upgrading from v3 with some plugins
John Owolabi Idogun

John Owolabi Idogun @sirneij

About: Software Engineer experienced in building applications using Python, Rust (Web), Go, and JavaScript/TypeScript. I am actively looking for new job opportunities.

Location:
USA
Joined:
Jun 25, 2020

TailwindCSS v4.0: Upgrading from v3 with some plugins

Publish Date: Jan 31
37 15

Introduction

Recently, while building a personal blog started with Tailwind CSS v3.4, I was faced with the need to upgrade to the latest version of the utility-first library. Though this migration guide was helpful, I couldn't find resources to include plugins such as @tailwindcss/typography (needed for the prose-related rules) and @tailwindcss/forms (needed for form elements). Hence this article. It will be a short ride.

Prerequisite

It is assumed you have a basic familiarity with the library. Also, I will be using SvelteKit as a framework of choice here but you just need any project where you need to migrate tailwind CSS from v3 to v4.

Implementation

Step 1: Run the tailwind CSS upgrade tool

To ease developers' stress migrating, the team at Tailwind CSS provided a nifty tool that helps to effortlessly migrate between the versions. In your project's root, just run:

$ npx @tailwindcss/upgrade@next
Enter fullscreen mode Exit fullscreen mode

You should accept the installation prompt and watch it do its magic! It will help correct some breaking changes in your code, fix postcss configuration (if you use it), correct the import statements in your main CSS file where tailwind was used, upgrade its version in package.json, etc. In case it can't migrate some stuff, you will be informed.

Step 2: Using plugins

The step above was pretty easy and basic. As I mentioned, the migration guide included that. However, most projects use more than just the basic tailwind setup. For example, you need @tailwindcss/typography for this rule to work:

.content {
  @apply dark:prose-invert prose-headings:font-bold prose-a:no-underline hover:prose-a:underline prose-pre:rounded-lg prose-pre:p-4;
}
Enter fullscreen mode Exit fullscreen mode

without it, you will be greeted with something like:

Cannot apply unknown utility class: dark:prose-invert
Enter fullscreen mode Exit fullscreen mode

In the same vein, without @tailwindcss/forms, you would find it hard to easily work with form elements, especially checkboxes.

In version 3, adding plugins such as the above would be done in tailwind.config.ts:

...
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
import type { Config } from 'tailwindcss';

export default {
    ...
    theme: {
        ...
    },
    plugins: [typography, forms,...]
} satisfies Config;

Enter fullscreen mode Exit fullscreen mode

However, with v4, you can ditch that file entirely. Instead, use your main entry CSS file (where you import tailwindcss):

@import "tailwindcss";
@plugin "@tailwindcss/typography";
@plugin "@tailwindcss/forms";
@plugin ...;
Enter fullscreen mode Exit fullscreen mode

with that, tailwindcss will compile easily.

Step 3: Enabling dark mode

By default, v4 uses the awesome prefers-color-scheme media feature to intrinsically support dark mode. However, most of us are used to toggling light/dark themes based on classes. Hence, in v3, we achieved this using tailwind.config.ts:

...
export default {
    ...
    darkMode: 'class',
    theme: {
        ...
    },
    plugins: [...]
} satisfies Config;
Enter fullscreen mode Exit fullscreen mode

In v4, the file will also be ditched. The main entry CSS file comes to the rescue:

@import "tailwindcss";
...

@custom-variant dark (&:where(.dark, .dark *));;
Enter fullscreen mode Exit fullscreen mode

with that, your previous toggling feature comes back to life!

That's it! If you have other tips, don't hesitate to share them.

Outro

Enjoyed this article? I'm a Software Engineer and Technical Writer actively seeking new opportunities, particularly in areas related to web security, finance, healthcare, and education. If you think my expertise aligns with your team's needs, let's chat! You can find me on LinkedIn and X. I am also an email away.

If you found this article valuable, consider sharing it with your network to help spread the knowledge!

Comments 15 total

  • Lars Rye Jeppesen
    Lars Rye JeppesenFeb 1, 2025

    Thank you, very helpful

  • Moksha Sai Reddy Nirugutti
    Moksha Sai Reddy NiruguttiFeb 1, 2025

    Since v4 removed tailwind.config.js, setting up UI libraries like shadcn (and others that depend on it) will fail because shadcn requires that file for component installation. If the file isn't present, it throws an error indicating it couldn't find it. I faced these issues, so I downgraded to tailwind@3.4.17. I think if you need to work with ui libraries better not to update right now . Please correct me if I missed something. Thank you.

  • manjindersinghsarkaria
    manjindersinghsarkariaFeb 4, 2025

    Is anyone facing issues with Vite? I installed @tailwindcss/vite as a dependency following the documentation. Then, in vite.config.ts, I added the import:

    import tailwindcss from '@tailwindcss/vite';
    
    export default defineConfig({
      plugins: [tailwindcss()],
    });
    
    Enter fullscreen mode Exit fullscreen mode

    However, I’m getting an error saying that the module @tailwindcss/vite could not be found. Has anyone encountered this issue before or found a solution?

    • John Owolabi Idogun
      John Owolabi IdogunFeb 4, 2025

      Can you double-check that you really installed it?

      • Manjinder sarkaria
        Manjinder sarkariaFeb 4, 2025

        Image description
        Image description

        Yes it is there and installed properly.
        Image description

        Image description

        • John Owolabi Idogun
          John Owolabi IdogunFeb 5, 2025

          Can you delete your node_modules and package-lock.json and reinstall your packages? Also, looking at your package.json, you should consider moving @types/*, tailwindcss, and other dependencies which are only used during development to devDependencies.

  • Abhishek Magar
    Abhishek MagarMar 4, 2025

    After upgrading tailwind css v3 to v4 its upgraded successfully but, after upgrading tailwindcss is not working, I don't think why cause my react app is created using create-react-app(CRA) i think this is a problem or not i am sure for now i just down grade it to v3 for now, if any one face the same problem and solved it's please shared us, thank you for use full information, its work in my another app which is created using vite.

    • John Owolabi Idogun
      John Owolabi IdogunMar 25, 2025

      Have you been able to fix this?

      • Abhishek Magar
        Abhishek MagarMar 25, 2025

        No, so i just start using v3 tailwind css, if you have any suggestions please provide me i want upgrade tailwind css

Add comment