我正在尝试热重新加载以使用我的设置。目前,它的工作原理如下 -
server.js
// this is the main server, which connects to db, serves react components, etc
const app = express();
app.get('/:params?*', (req, res) => {
res.status(200).send(`
<!doctype html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
hi
<script src="http://localhost:3000/build/client.js"></script>
</body>
</html>
`);
});
...
app.listen(5000);
gulpfile.babel.js
const CLIENT_DEV_CONFIG = {
entry: [
CLIENT_ENTRY,
'webpack-hot-middleware/client',
'eventsource-polyfill',
],
plugins: [
new webpack.HotModuleReplacementPlugin(),
],
output: {
...CLIENT_OUTPUT,
publicPath: 'http://localhost:3000/build/',
},
module: {
loaders: [BABEL_LOADER]
},
}
gulp.task('client-watch', done => {
console.log(CLIENT_DEV_CONFIG.output.publicPath);
const opts = {
hot: true,
publicPath: CLIENT_DEV_CONFIG.output.publicPath,
headers: {'Access-Control-Allow-Origin': '*'},
};
const app = new express();
const compiler = webpack(CLIENT_DEV_CONFIG);
app.use(webpackDevMiddleware(compiler, opts));
app.use(webpackHotMiddleWare(compiler));
app.listen(3000, (err) => {
console.log(err || '[webpack-hot-devserver] running on 3000');
done();
});
});
现在,
localhost:5000
。它的工作原理localhost:3000/build/client.js
,它也可以使用但是,如果我更新了一些我没有获得实时更新的内容,我需要刷新...... :(
查看网络标签,我看到http://localhost:5000/__webpack_hmr
的请求失败,我认为这可能是一个问题。
http://localhost:5000/__webpack_hmr
实际应该是http://localhost:3000/__webpack_hmr
但是,我不知道如何纠正这个
答案 0 :(得分:9)
您可以在entry
数组的行中的webpack配置中指定URL,如下所示:
const CLIENT_DEV_CONFIG = {
entry: [
CLIENT_ENTRY,
`webpack-hot-middleware/client?path=${HOT_SERVER_URL}/__webpack_hmr`,
'eventsource-polyfill',
],
plugins: [
new webpack.HotModuleReplacementPlugin(),
],
output: {
...CLIENT_OUTPUT,
publicPath: `${HOT_SERVER_URL}/build/`,
},
module: {
loaders: [
{
...BABEL_LOADER,
query: {...BABEL_QUERY, presets: [...BABEL_QUERY.presets, 'react-hmre']},
},
],
},
}
特别是这一行:
`webpack-hot-middleware/client?path=${HOT_SERVER_URL}/__webpack_hmr`,
path
选项允许设置热模块重新加载应该访问的位置以访问__webpack_hmr
端点。例如,可以将其设置为:
'webpack-hot-middleware/client?path=//localhost:3000/__webpack_hmr'