JowayYoung / bruce-cli

A JS/React Application Automation Build Scaffold With Zero Configuration Out Of The Box

Home Page:https://jowayyoung.github.io/bruce/app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bruce b 显示构建失败

zephyrljy opened this issue · comments

检查下有没有第三方依赖是使用了es5的文件,例如vue-router或swiper,如果有可以在项目的brucerc.js里增加以下配置

module.exports = {
    alias: {
        "vue-router": "vue-router/dist/vue-router.min.js"
    }, // 模块导入快捷方式
};

其实是应用了webpack alias 这个选项,可以去webpack官网了解下其原理