提交 2a4684f6 编写于 作者: 雪洛's avatar 雪洛

fix(web): 修复非uni-app-x项目在项目App.vue同级存在App.uvue时运行报错的Bug

上级 cc5d1a51
......@@ -193,9 +193,11 @@ export function isAppVue(filename: string) {
}
export function resolveAppVue(inputDir: string) {
const appUVue = path.resolve(inputDir, 'App.uvue')
if (fs.existsSync(appUVue)) {
return normalizePath(appUVue)
if (process.env.UNI_APP_X === 'true') {
const appUVue = path.resolve(inputDir, 'App.uvue')
if (fs.existsSync(appUVue)) {
return normalizePath(appUVue)
}
}
return normalizePath(path.resolve(inputDir, 'App.vue'))
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册