-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue.config.example.js
89 lines (84 loc) · 2.36 KB
/
vue.config.example.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
const path = require("path");
function resolve(dir) {
return path.join(__dirname, dir);
}
console.log("打包开始", process.env.NODE_ENV);
module.exports = {
publicPath: "./",
configureWebpack: {
entry: "./examples/main.js",
resolve: {
extensions: [".js", ".ts", ".vue", ".css", "scss"],
alias: {
lichFormDesigner: path.resolve(__dirname, "./src"),
examples: path.resolve(__dirname, "./examples")
}
},
module: {
rules: [
// All files with a '.ts' or '.tsx' extension will be handled by 'awesome-typescript-loader'.
{ test: /\.tsx?$/, loader: "ts-loader" }
]
}
// optimization: {
// minimize: true
// }
// externals: ["element-ui", "vuedraggable"]
},
chainWebpack(config) {
// set svg-sprite-loader
config.module
.rule("svg")
.exclude.add(resolve("src/icons"))
.end();
config.module
.rule("icons")
.test(/\.svg$/)
.include.add(resolve("src/icons"))
.end()
.use("svg-sprite-loader")
.loader("svg-sprite-loader")
.options({
symbolId: "icon-[name]"
})
.end();
if (process.env.NODE_ENV === "production") {
// #region 启用第三方cdn加速
let cdn = null;
var externals = {
vue: "Vue",
"element-ui": "ELEMENT",
"vue-router": "VueRouter",
vuedraggable: "vuedraggable",
clipboard: "ClipboardJS"
};
// https://webpack.docschina.org/configuration/externals
config.externals(externals);
cdn = {
css: [
// element-ui css
"//unpkg.com/element-ui/lib/theme-chalk/index.css"
],
js: [
// vue
"//cdn.staticfile.org/vue/2.5.22/vue.min.js",
// vue-router
"//cdn.staticfile.org/vue-router/3.0.2/vue-router.min.js",
// element-ui js
"//unpkg.com/element-ui/lib/index.js",
//vuedraggable
"//cdn.staticfile.org/Sortable/1.10.2/Sortable.min.js",
"//cdn.staticfile.org/Vue.Draggable/2.23.2/vuedraggable.umd.min.js",
//clipboard
"//cdn.staticfile.org/clipboard.js/2.0.6/clipboard.min.js"
]
};
config.plugin("html").tap(args => {
if (cdn) args[0].cdn = cdn;
return args;
});
// console.log(config.plugin("html"));
// #endregion
}
}
};