Skip to content

Commit 8b9879e

Browse files
author
阿笠
committed
Fix: fix the 'undefined' string in the css file issue.
There is an incorrect 'undefined' string in the css file after processing by source-map-loader.
1 parent cfad381 commit 8b9879e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,6 @@ module.exports = function(input, inputMap) {
9090
});
9191
return;
9292
}
93-
callback(null, input.replace(match[0], match[2]), map);
93+
callback(null, input.replace(match[0], ''), map);
9494
}
9595
}

0 commit comments

Comments
 (0)