@k88/cra-webpack-hot-dev-client
v1.1.0
Published
A Webpack Hot Dev Client taken from Create React App
Downloads
25,992
Maintainers
Readme
Installation
Install using
npm install @k88/cra-webpack-hot-dev-client
Usage
Add the path to webpack entry
:
module.exports = {
/* webpack configuration */
entry: [
isDev && require.resolve('@k88/cra-webpack-hot-dev-client'),
/* Other entry paths */
],
};