diff --git a/app/config.js b/app/config.js index 1759b08c..10a7bd5b 100644 --- a/app/config.js +++ b/app/config.js @@ -40,7 +40,8 @@ let cfg = {}; function watch() { // watch for changes on config every 2s - gaze(path, {interval: 2000}, function (err) { + // windows interval: https://github.com/zeit/hyper/pull/1772 + gaze(path, process.platform === 'win32' ? {interval: 2000} : {}, function (err) { if (err) { throw err; }