I'm using webpack to build my client JS with the devtool: 'source-map'
option, so my JS bundle ends in //# sourceMappingURL=app.bundle.js.map
. When I open chrome devtools, Chrome shows a "Source Map detected" banner but does not actually show the original sources in the navigator. My server access logs don't show any requests for the source map.
When I open the same page with Firefox dev tools, it loads the source map exactly as expected.
All other assets load fine. Clearing my browser cache doesn't help.
Has anyone experienced this? Is this a Chrome bug?