From 13205171d71edcbd6886439bd3e48ab444868dd1 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 28 Jan 2021 21:01:53 -0800 Subject: [PATCH] chore: Improve dev efficient on M1 Mac --- server/app.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server/app.js b/server/app.js index 56b86b77f..4864c8152 100644 --- a/server/app.js +++ b/server/app.js @@ -77,6 +77,11 @@ if (isProduction) { // that means no watching, but recompilation on every request lazy: false, + watchOptions: { + poll: 1000, + ignored: ["node_modules"] + }, + // public path to bind the middleware to // use the same as in webpack publicPath: config.output.publicPath,