Skip to content

Commit

Permalink
feat: 兼容 App.vue 和 app.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
meixg committed Jun 5, 2019
1 parent 63bb35a commit b37e161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mars-build/src/gulp-mars-base.js
Expand Up @@ -48,7 +48,7 @@ function compile(file, opt, compilers) {
}
catch (e) {}

const isApp = path.basename(fPath) === 'app';
const isApp = path.basename(fPath).toLowerCase() === 'app';
const options = Object.assign({
isApp,
coreRelativePath,
Expand Down

0 comments on commit b37e161

Please sign in to comment.