fix(webpack-import-meta-loader): fix a bug in the publicPath logic (#1677)

This commit is contained in:
Fred K. Schott
2020-05-24 23:09:24 -07:00
committed by GitHub
parent d6cef3007f
commit f8ff5e8a6b

View File

@@ -45,7 +45,7 @@ module.exports = function (source) {
if (publicPath) {
url += publicPath;
} else {
url += '//';
url += '/';
}
return url + relativeUrl;