I am working on a reactjs
project and using webpack-dev-server
for running my app.
react-hot is not refreshing my browser whenever I change a some js file. Also, when refreshing my browser, changes don't appear. I have to turn off then on my webpack-dev-server
.
Here is my package.json file :
{
"name": "someApp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot --inline",
"prod": "webpack -p"
},
"author": "someName",
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"react": "^15.4.1",
"react-addons-css-transition-group": "^15.4.1",
"react-dom": "^15.4.1",
"react-router": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.26.1",
"html-webpack-plugin": "^2.7.1",
"react-hot-loader": "^1.3.1",
"style-loader": "^0.13.0",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.16.2"
}
}
Here is my webpack.config.js
configuration :
var HtmlWebpackPlugin = require('html-webpack-plugin')
var HTMLWebpackPluginConfig = new HtmlWebpackPlugin({
template: __dirname + '/app/index.html',
filename: 'index.html',
inject: 'body'
});
module.exports = {
entry: [
'./app/index.js'
],
output: {
path: __dirname + '/dist',
filename: "index_bundle.js"
},
module: {
loaders: [
{test: /\.js$/, include: __dirname + '/app', loaders: ["react-hot", "babel-loader"]},
{ test: /\.css$/, loader: "style-loader!css-loader" }
]
},
plugins: [HTMLWebpackPluginConfig]
};
You're missing this part in the
entry
part ofwebpack.config.js
file:entry: [ 'webpack-dev-server/client?http://0.0.0.0:3000', 'webpack/hot/only-dev-server', ]