We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a page with three bundles. Unfortunately, reloading does not work with new LiveReloadPlugin({port: 0, appendScriptTag: true}).
new LiveReloadPlugin({port: 0, appendScriptTag: true})
On startup, everything looks fine:
$ ../node_modules/.bin/webpack --mode=development --watch [webpack-cli] Compilation antd-reduced starting... [webpack-cli] Compilation logdb-web starting... [webpack-cli] Compilation starting... <i> [LiveReloadPlugin] Live Reload listening on port 35729 <i> [LiveReloadPlugin] Live Reload listening on port 35730 <i> [LiveReloadPlugin] Live Reload listening on port 35731 [webpack-cli] Compilation finished [webpack-cli] watching files for updates... [webpack-cli] Compilation finished [webpack-cli] watching files for updates... [webpack-cli] Compilation finished
<script id="webpack-livereload-plugin-script-2b46959be903b68a" async="" src="//localhost:35729/livereload.js"></script> <script id="webpack-livereload-plugin-script-40d0cd75cb7a994d" async="" src="//localhost:35730/livereload.js"></script> <script id="webpack-livereload-plugin-script-15a04157ba643cb0" async="" src="//localhost:35731/livereload.js"></script>
[Live Reload] enabled [Live Reload] enabled [Live Reload] enabled
However, I have noticed in the network monitor that the URLs are incorrectly mapped:
http://localhost:35729/livereload.js -> ws://localhost:35729/livereload http://localhost:35730/livereload.js -> ws://localhost:35729/livereload http://localhost:35731/livereload.js -> ws://localhost:35729/livereload
All three HTTP-URLs are mapped to the same WS-URL!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a page with three bundles. Unfortunately, reloading does not work with
new LiveReloadPlugin({port: 0, appendScriptTag: true})
.On startup, everything looks fine:
However, I have noticed in the network monitor that the URLs are incorrectly mapped:
http://localhost:35729/livereload.js -> ws://localhost:35729/livereload
http://localhost:35730/livereload.js -> ws://localhost:35729/livereload
http://localhost:35731/livereload.js -> ws://localhost:35729/livereload
All three HTTP-URLs are mapped to the same WS-URL!
The text was updated successfully, but these errors were encountered: