Explanation
Activates Just-In-Time compiler for faster builds and more flexibility
Examples
Enable JIT mode
// tailwind.config.js
module.exports = {
mode: 'jit',
purge: [
'./src/**/*.{html,js,jsx,ts,tsx}'
],
// ...
}
Activates Just-In-Time compiler for faster builds and more flexibility
Enable JIT mode
// tailwind.config.js
module.exports = {
mode: 'jit',
purge: [
'./src/**/*.{html,js,jsx,ts,tsx}'
],
// ...
}