Michael Dyrynda
Home Blog Podcasts
 
Using Tailwind's JIT compiler with Laravel Mix March 16th, 2021

Introduction

Overnight, Adam Wathan and the Tailwind Labs team released a new JIT compiler that generates your styles on-demand as you author your templates instead of generating everything in advance at initial build time.

The main benefit of this compiler is being able to just start writing your Tailwind-powered HTML without having to build out the entire 4MB+ CSS file (and removing unused CSS to shrink it down for production later).

Configuring with Laravel Mix

As a predominantly Laravel developer that is accustomed to Laravel Mix, I wanted to see how to get this working with Laravel Mix, and was pleasantly surprised that it was a) quite simple and b) Just Works™️*

First, install the JIT-compiler with NPM.

1npm install -D @tailwindcss/jit tailwindcss postcss

Next, ensure that your tailwind.config.js file is setup to watch your template files:

1// tailwind.config.js
2module.exports = {
3 purge: ['./resources/**/*.{js,vue,blade.php}'],
4 darkMode: false, // or 'media' or 'class'
5 theme: {
6 extend: {},
7 },
8 variants: {
9 extend: {},
10 },
11 plugins: [],
12}

Then, instruct Mix to use the JIT compiler:

1// webpack.mix.js
2const mix = require("laravel-mix");
3 
4mix.postCss("resources/css/app.css", "public/css", [
5 require("@tailwindcss/jit"),
6]);

Lastly, start the Laravel Mix watcher:

1npx mix watch

Things to note

Using with postcss-import

If you're using @import statements in your CSS files (that is if you're using something like Webpacker for Rails), you'll also need to include the postcss-import plugin:

1mix.postCss("resources/css/app.css", "public/css", [
2 require("@tailwindcss/jit"),
3 require("postcss-import"), // [tl! ++]
4]);

Additive changes

You may, like me, note that using the JIT compiler will append classes while the watcher is running - even if you remove them.

As Robin notes, this is to keep the caching of classes purely additive during development. This means that if you use, then remove, then later reuse a class performance of the JIT compiler can be kept quite fast.

This shouldn't cause any issues during development, and restarting the watcher (npx mix watch) will recompile the entire CSS file with only the classes that are used.

That said, remember to run a production build with npx mix --production when you're deploying to ensure your final CSS file is as small as possible.

Ready to go

With the Mix watcher running, any time you save changes to your purge-watchd files, the JIT compiler will regenerate your public/css/app.css file with only the Tailwind classes that you have used within those files.

This ensures that you have only the classes your project is actually using, and will keep the compiled CSS file's size right down from the very start.

* Note that at the time of this article, there seems to be a compilation issue with prefixed styles and negated classes, so be sure to keep an eye for that if you're using prefixes with your generated styles.

I'm a real developer ™
Michael Dyrynda

@michaeldyrynda

I am a software developer specialising in PHP and the Laravel Framework, and a freelancer, blogger, and podcaster by night.

Proudly hosted with Vultr

Syntax highlighting by Torchlight