We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 639ac56 commit a73561dCopy full SHA for a73561d
src/utils.js
@@ -165,6 +165,8 @@ function normalizeSourceMap(map) {
165
newMap = JSON.parse(newMap);
166
}
167
168
+ console.log(newMap);
169
+
170
// Source maps should use forward slash because it is URLs (https://github.com/mozilla/source-map/issues/91)
171
// We should normalize path because previous loaders like `sass-loader` using backslash when generate source map
172
@@ -180,6 +182,8 @@ function normalizeSourceMap(map) {
180
182
newMap.sources = newMap.sources.map((source) => normalizePath(source));
181
183
184
185
186
187
return newMap;
188
189
0 commit comments