Using React on this blog
27 Aug 2015The changes in the webpack.hot.config.js
are shown in full below:
{
//... webpack config
module: {
loaders: [
{
test: /\.js$/,
loaders: ['react-hot', 'babel-loader'],
include: path.join(__dirname, 'src')
}
]
},
output: {
path: path.join(__dirname, "public", "js"),
filename: '[name].hot.js',
publicPath: 'http://localhost:8080/'
},
devServer: {
publicPath: 'http://localhost:8080/',
contentBase: "./src",
hot: true,
inline: true,
headers: { 'Access-Control-Allow-Origin': '*' }
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
]
}
Finally, this last paragraph’s text was generated by jekyll and not react, to demonstrate they can mix seamlessly.