module.exports = {
    chainWebpack: (config) => {
        config.module.rule('js').test(/\.js$/).use('babel-loader').loader('babel-loader')
    },
    configureWebpack: config => {
        config.entry.app = ["babel-polyfill", "./src/main.js"];
     },
    
    }
}

babel-polyfill需要安装在生产环境

Logo

前往低代码交流专区

更多推荐