2020-03-21缩小vue打包大小

在Index.html中的中增加

    
    
    

在main.js中注释掉相关的引入

// import 'element-ui/lib/theme-chalk/index.css'
// import ElementUi from 'element-ui'
// Vue.use(ElementUi)

在vue.config.js中增加

// vue.config.js
module.exports = {
/*    publicPath: process.env.NODE_ENV === 'production'
        ? '/production-sub-path/'
        : '/',*/
    configureWebpack: config => {

        // 排除掉要使用cdn的包:
        config.externals = {
            "vue": "Vue",
            "element-ui": "ElementUI"
        }

    }

}

你可能感兴趣的:(2020-03-21缩小vue打包大小)