diff --git a/tailwind.config.js b/tailwind.config.js index 57e483c..5aafc46 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,11 +1,17 @@ module.exports = { - content: [ - "./resources/**/*.blade.php", - "./resources/**/*.js", - "./resources/**/*.vue", - ], - theme: { - extend: {}, - }, - plugins: [], + mode: 'jit', + content: [ + "./resources/**/*.blade.php", + "./resources/**/*.js", + "./resources/**/*.vue", + ], + // These paths are just examples, customize them to match your project structure + purge: [ + './public/**/*.html', + './resources/**/**/*.{js,jsx,ts,tsx,vue}', + ], + theme: { + extend: {}, + }, + plugins: [], }