Chrome doesn't pick up the js source map and dumps the error from the original minified source. Source map clearly lays beside the minified js file, with the same name but a .map
extension. And there is a proper reference to it at the end of minified js file:
//# sourceMappingURL=main.2635fcfe.js.map
Enable JavaScript source maps
setting is also checked in the Dev Tools:
All the resources on the web state that it should just work. Any ideas on why it might not? Is there anyway to debug the source map inclusion process, maybe witness the path that Chrome is testing?
//# sourceMappingURL=/path/to/script.js.map
comment? A sourcemap is not picked up just by lying next to the JS file. – Keewatin//# sourceMappingURL=main.2635fcfe.js.map
– Nausea