JAVASCRIPT 28
Tailwindcss - just in time mode By micha on 13th August 2021 05:26:08 PM
  1. // tailwind.config.js
  2.   module.exports = {
  3.     mode: 'jit',
  4.  
  5.    // These paths are just examples, customize them to match your project structure
  6.  
  7.    purge: [
  8.  
  9.      './public/**/*.html',
  10.  
  11.      './src/**/*.{js,jsx,ts,tsx,vue}',
  12.  
  13.    ],
  14.     theme: {
  15.       // ...
  16.     }
  17.     // ...
  18.   }
  19.  
  20.  
  21. see https://tailwindcss.com/docs/just-in-time-mode

Paste is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.