mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
Fix webpack ignored files (#69)
Before, the configuration used an array of regex literals. With webpack 2.1.1, this breaks as it expects a list of glob strings. See https://webpack.js.org/configuration/watch/#watchoptionsignored
This commit is contained in:
parent
f3ca6f11d0
commit
342f024a85
@ -18,7 +18,7 @@ module.exports =
|
|||||||
publicPath: '/dist/',
|
publicPath: '/dist/',
|
||||||
watchContentBase: true,
|
watchContentBase: true,
|
||||||
watchOptions: {
|
watchOptions: {
|
||||||
ignored: [/node_modules/, /\.git/]
|
ignored: ['**/node_modules/', '**/.git/']
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
module: {
|
module: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user