Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: dist source map file naming was incorrect (#730)
- JS source map must be named the same as the original JS file + `.map` suffix, in our case since we have `.min.js`, we need the sourcemap to be named `.min.js.map` to be auto-detected but ours we named as `.js.map` (missing `.min` prefix and wasn't auto-detected by Chrome
- Loading branch information