From 2b6c08c08744b30e42b8d4b367208d246467fe58 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Tue, 11 Nov 2025 11:11:47 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Make=20watch=20script=20p?= =?UTF-8?q?ay=20attention=20to=20css=20files=20project-wide?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/.watch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/.watch.js b/bin/.watch.js index 5aaafd9..da7651a 100644 --- a/bin/.watch.js +++ b/bin/.watch.js @@ -40,7 +40,7 @@ browserSync.watch(`static/js/*.js`, (event, file) => { }); // Compile tailwind to css and reload on changes -browserSync.watch(["styles/**/*.css", "**/*.php"], (event, file) => { +browserSync.watch(["**/*.css", "**/*.php"], (event, file) => { if (event !== "change") return; tailwindToCSS();