From f7021abe2791deb8026ba3e5290be57222c0a673 Mon Sep 17 00:00:00 2001 From: Brian Gann Date: Sun, 24 Sep 2023 22:03:25 -0400 Subject: [PATCH] update config --- .config/webpack/webpack.config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/webpack/webpack.config.ts b/.config/webpack/webpack.config.ts index 53a8805..b3ba675 100644 --- a/.config/webpack/webpack.config.ts +++ b/.config/webpack/webpack.config.ts @@ -197,14 +197,14 @@ const config = async (env): Promise => { modules: [path.resolve(process.cwd(), 'src'), 'node_modules'], unsafeCache: true, }, - }; + } - if (isWSL()) { + if(isWSL()) { baseConfig.watchOptions = { poll: 3000, ignored: /node_modules/, - }; - } + }} + return baseConfig;