From 3373c4ec35c263b19a4cfc195d370120793dc471 Mon Sep 17 00:00:00 2001 From: Caen De Silva <95144705+caendesilva@users.noreply.github.com> Date: Wed, 4 May 2022 20:10:27 +0200 Subject: [PATCH] Add back _site to Tailwind content array Adds back the site glob pattern that can cause an endless loop, but adds a warning. See https://github.com/hydephp/hyde/issues/146 --- tailwind.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tailwind.config.js b/tailwind.config.js index eba5d90..a4d47b5 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -3,6 +3,7 @@ const defaultTheme = require('tailwindcss/defaultTheme'); module.exports = { darkMode: 'class', content: [ + './_site/**/*.html', // If you have issues with npm run watch getting stuck in a loop, remove this line. See https://github.com/hydephp/hyde/issues/146 './resources/views/**/*.blade.php', './vendor/hyde/framework/resources/views/**/*.blade.php', ],