I wanted to launch GWT SuperDevMode and set breakpoints on Chrome or Edge's DevTools, but previously I was able to view the source and set breakpoints. However, the source is not displayed due to recent browser updates.
for local startup
Web container: http://127.0.0.1:8888/
souecemap: http://127.0.0.1:9876/
So it's a cross-origin, but when I check it with Chrome's DevTools,
DevTools failed to load source map: Could not load content for http://127.0.0.1:8888/sourcemaps/GwtModule/gwtSourceMap.json: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
is displayed in the console as a warning.
However, the source map specification is
//# sourceMappingURL=http://127.0.0.1:9876/sourcemaps/GwtModule/gwtSourceMap.json
It states. Therefore, it seems that the port specification is forcibly rewritten(9876->8888) by the browser.
Is this behavior due to security enhancements? Or is it just a bug?