Skip to content

Commit

Permalink
Fix tailwind not compile just in time
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedHelalAhmed committed Jan 8, 2022
1 parent 4630764 commit 65da95a
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -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: [],
}

0 comments on commit 65da95a

Please sign in to comment.