A Webpack Hot Dev Client taken from Create React App
npm install @k88/cra-webpack-hot-dev-clientTaken from react-dev-utils, but is published as a standalone plugin and has Typescript definition.
Install using
``bash`
npm install @k88/cra-webpack-hot-dev-client
Add the path to webpack entry:
`javascript``
module.exports = {
/ webpack configuration /
entry: [
isDev && require.resolve('@k88/cra-webpack-hot-dev-client'),
/ Other entry paths /
],
};