cra-webpack-hot-dev-client

Weback Hot Reloader taking form Create React App

MIT License

Downloads
25.1K
Stars
0
Committers
1

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 */
    ],
};