Authored by 陈峰

commit

... ... @@ -16,7 +16,7 @@ const loadFileSourceMap = (fileUrl) => {
logger.info('cache');
return Promise.resolve(cacheItem);
} else {
if (!/\.js$/.test(fileUrl)) {
if (!/\.js(\?.*?)?$/.test(fileUrl)) {
return Promise.resolve();
}
const urlPath = url.parse(fileUrl).pathname;
... ...