Skip to content

Commit

Permalink
Merge pull request #2042 from hydephp/fix-tailwind-content-paths
Browse files Browse the repository at this point in the history
Fix Tailwind content path for nested Blade pages
  • Loading branch information
caendesilva authored Nov 25, 2024
2 parents df057bb + 985fe63 commit cbd4f64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/hyde/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
darkMode: 'class',
content: [
'./_pages/*.blade.php',
'./_pages/**/*.blade.php',
'./resources/views/**/*.blade.php',
'./vendor/hyde/framework/resources/views/**/*.blade.php',
],
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
darkMode: 'class',
content: [
'./_pages/*.blade.php',
'./_pages/**/*.blade.php',
'./resources/views/**/*.blade.php',
'./vendor/hyde/framework/resources/views/**/*.blade.php',
],
Expand Down

0 comments on commit cbd4f64

Please sign in to comment.