-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config--cdn.js
37 lines (35 loc) · 1.03 KB
/
vue.config--cdn.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* 配置依赖cdn
*/
// https://www.npmjs.com/package/html-webpack-externals-plugin
const HtmlWebpackExternalsPlugin = require('html-webpack-externals-plugin'); // 分包-设置Externals
module.exports = {
configureWebpack: (config) => {
if (process.env.NODE_ENV === 'production') {
// 为生产环境修改配置...
const cdnPlugins = [
new HtmlWebpackExternalsPlugin({
externals: [
{
module: 'vue',
entry: 'https://cdn.bootcss.com/vue/2.5.2/vue.min.js',
global: 'Vue',
},
{
module: 'vue-router',
entry:
'https://cdn.bootcss.com/vue-router/3.0.1/vue-router.min.js',
global: 'VueRouter',
},
{
module: 'vuex',
entry: 'https://cdn.bootcss.com/vuex/3.0.1/vuex.min.js',
global: 'Vuex',
},
],
}),
];
config.plugins = [...config.plugins, ...cdnPlugins];
}
},
};