I have such a script to run inline webpack-dev-server:
webpack-dev-server --hot --devtool eval-source-map --output-pathinfo --watch --colors --progress --inline --content-base public --port 8050 --host 0.0.0.0
Initial build takes a long time to pull all core packages and it is ok. Unfortunately any change in any react component takes a while. Is it any way to avoid building of react, react mdl and other core components similar to loaders exclude functionality?
Thank you!