Fix node_modules exclusion in webpack server (#981)

This commit is contained in:
Erik Demaine
2017-11-22 22:01:05 -05:00
committed by Ashish Myles
parent fd2544f8f9
commit d59647dfa7

View File

@@ -34,7 +34,7 @@ const commonConfig = {
{
test: /\.js$/,
use: 'babel-loader',
exclude: /node_modules\//,
exclude: /\bnode_modules\b/,
},
],
},