Skip to content

Commit 1691672

Browse files
committed
Implemented smoother windows compatibility
1 parent 6231f2e commit 1691672

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

webpack.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ const config = {
2121
* Bundle each entry point into one "chunk" & store it in the extension/build/bundles folder
2222
* When load the unpacked extension in the chrome extension store, the src/extension/build folder is selected => load all bundles (app, backend, background & content script)
2323
*/
24+
watchOptions: {
25+
poll: true,
26+
ignored: /node_modules/
27+
},
28+
2429
output: {
2530
path: path.resolve(__dirname, 'src/extension/build/bundles'),
2631
filename: '[name].bundle.js',

0 commit comments

Comments
 (0)