February 2019
Intermediate to advanced
204 pages
4h 52m
English
This is one of the most useful features provided by webpack. Although our project is already configured and enabled with this feature, in this section we are going to walk through it. We are using webpack-hot-middleware as it allows us to add hot reloading into an existing server (https://github.com/webpack-contrib/webpack-hot-middleware). To configure it, follow these steps:
yarn add webpack-hot-middleware --dev --exactornpm install --save-dev webpack-hot-middlewareplugins: [ new webpack.HotModuleReplacementPlugin(), new ...
Read now
Unlock full access