reactjs / react-router-tutorial

5.52k stars 1.75k forks source link

How to tie '- - hot' so that when you change and save in files, see the changes in the browser #313

Open yura-master-web opened 7 years ago

zainulabidin302 commented 7 years ago

npm install --save-dev babel-preset-react-hmre

change module section in webpack.config.js

module: {
    loaders: [
      { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader?presets[]=es2015&presets[]=react&presets[]=react-hmre',
        }
    ]
}

in package.json change scripts section


  "scripts": {
    "start": "webpack-dev-server --inline --content-base --hot"
  },

And that's it, happy live reload ... http://matthewlehner.net/react-hot-module-replacement-with-webpack/