Skip to content

Commit

Permalink
chore(webpack): stop watching node modules in dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jailln committed Jan 25, 2024
1 parent 14884f3 commit 47d0c7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.js
Expand Up @@ -99,7 +99,7 @@ module.exports = () => {
static: {
directory: path.resolve(__dirname, './'),
watch: {
ignored: path.resolve(__dirname, '.git'),
ignored: [path.resolve(__dirname, '.git'), path.resolve(__dirname, 'node_modules')],
},
},
client: {
Expand Down

0 comments on commit 47d0c7c

Please sign in to comment.