vue-cli3.X 配置webpack plugins
vue-cli3.X 配置webpack pluginsvue2.X 版本webpack配置引入第三方插件var webpack = require('webpack');module.exports = {plugins: [new webpack.ProvidePlugin({$: 'jquery', //引入jqueryjQuery: '...
·
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'
}]);
}
}
更多推荐
已为社区贡献2条内容
所有评论(0)