vue-cli3.X 配置webpack plugins

vue-cli3.X 配置webpack plugins

vue2.X 版本webpack配置引入第三方插件

var webpack = require('webpack');
module.exports = {
	plugins: [
	    new webpack.ProvidePlugin({
	      $: 'jquery', //引入jquery
	      jQuery: 'jquery',
	      moment: 'moment'  //引入moment.js时间处理插件
	    }),
    ]
}

vue-cli3.X 版本webpack配置引入第三方插件

const webpack = require('webpack')
module.exports = {
	chainWebpack: config => {
		config.plugin('provide').use(webpack.ProvidePlugin, [{
		      $: 'jquery',
		      jquery: 'jquery',
		      jQuery: 'jquery',
		      'window.jQuery': 'jquery'
	    }]);
	}
}

你可能感兴趣的:(vue)