Skip to content

Commit

Permalink
Merge pull request #1899 from owncloud/dont-watch-node-modules
Browse files Browse the repository at this point in the history
Don't yarn watch node_modules
  • Loading branch information
Lukas Hirt authored Sep 5, 2019
2 parents d86ea85 + e3c386d commit 2f7b3d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = merge(common, {
port: 8300,
disableHostCheck: true,
watchOptions: {
ignored: path.resolve(__dirname, 'tests')
ignored: [path.resolve(__dirname, 'tests'), path.resolve(__dirname, 'node_modules')]
}
}
})

0 comments on commit 2f7b3d7

Please sign in to comment.