From 1f9f759ae70d91bccb8fbfe4f2745948d462e20a Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sat, 30 Jul 2022 21:07:49 +0200 Subject: [PATCH] gulpfile.js: enable polling in watch_sass() --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index bd0a398..fd3b36d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -54,7 +54,7 @@ function build_js() { } function watch_sass() { - return watch(config.sass.pattern, build_css); + return watch(config.sass.pattern, {"usePolling":true}, build_css); } exports.build_css = build_css;