You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
source-map-explorer splits up consecutive slashes in custom URI schemes. For example, a folder webpack://src/ is divided into webpack:, `` (empty string), and src.
Steps to reproduce
After building a CRA project with custom CSS, run source-map-explorer 'build/static/css/*.css'.
Files to reproduce
The relevant part is this section from the .css.map file:
Description
source-map-explorer splits up consecutive slashes in custom URI schemes. For example, a folder
webpack://src/
is divided intowebpack:
, `` (empty string), andsrc
.Steps to reproduce
After building a CRA project with custom CSS, run
source-map-explorer 'build/static/css/*.css'
.Files to reproduce
The relevant part is this section from the .css.map file:
Expected behavior
The URI scheme is either removed entirely or left intact.
Environment
Additional context
However CRA does their source mapping, this only happens for CSS, not JS.
The text was updated successfully, but these errors were encountered: