Skip to content

Commit 69893db

Browse files
committed
fix?
1 parent 3a68f09 commit 69893db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source-map-support.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,9 +259,9 @@ function supportRelativeURL(file, url) {
259259
const dir = path.dirname(file);
260260
return path.resolve(dir, url);
261261
}
262-
// if(isFileUrl(file) && path.isAbsolute(url)) {
263-
// url = pathToFileURL(url).toString();
264-
// }
262+
if(isFileUrl(file) && path.isAbsolute(url)) {
263+
url = pathToFileURL(url).toString();
264+
}
265265
}
266266
return resolveUri(url, file);
267267
}

0 commit comments

Comments
 (0)