提交 9296fd8c 编写于 作者: fxy060608's avatar fxy060608

Merge branch 'dev' of https://github.com/dcloudio/uni-app into alpha

......@@ -218,7 +218,7 @@ var serviceContext = (function () {
function getRealPath (filePath) {
const SCHEME_RE = /^([a-z-]+:)?\/\//i;
const BASE64_RE = /^data:[a-z-]+\/[a-z-]+;base64,/;
const DATA_RE = /^data:.*,.*/;
// 无协议的情况补全 https
if (filePath.indexOf('//') === 0) {
......@@ -226,7 +226,7 @@ var serviceContext = (function () {
}
// 网络资源或base64
if (SCHEME_RE.test(filePath) || BASE64_RE.test(filePath)) {
if (SCHEME_RE.test(filePath) || DATA_RE.test(filePath)) {
return filePath
}
......@@ -2471,7 +2471,7 @@ var serviceContext = (function () {
}
const SCHEME_RE = /^([a-z-]+:)?\/\//i;
const BASE64_RE = /^data:[a-z-]+\/[a-z-]+;base64,/;
const DATA_RE = /^data:.*,.*/;
function addBase (filePath) {
return filePath
......@@ -2486,7 +2486,7 @@ var serviceContext = (function () {
}
}
// 网络资源或base64
if (SCHEME_RE.test(filePath) || BASE64_RE.test(filePath) || filePath.indexOf('blob:') === 0) {
if (SCHEME_RE.test(filePath) || DATA_RE.test(filePath) || filePath.indexOf('blob:') === 0) {
return filePath
}
......
......@@ -205,7 +205,8 @@ module.exports = function () {
})
},
modules: [
'node_modules',
'node_modules',
path.resolve(process.env.UNI_CLI_CONTEXT, 'node_modules'),
path.resolve(process.env.UNI_INPUT_DIR, 'node_modules')
]
},
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册