Setup Live Reload
To enable reloading of the browser after changes, add the devServer
option to the Webpack config:
module.exports = {
// enable live reload
devServer: {
static: path.join(__dirname, 'dist'),
watchFiles: {
paths: ['src/**/*.*'],
options: {
usePolling: true,
},
},
},
};
warningIf you don't have a referenced source script file in HTML, then set the hotUpdate option to
true
to enable live reload. Besides, thedevServer.hot
must betrue
(defaults).