-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvue.config.js
40 lines (38 loc) · 926 Bytes
/
vue.config.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
const path = require("path");
function resolve(dir) {
return path.join(__dirname, ".", dir);
}
module.exports = {
publicPath: "./",
outputDir: "dist",
assetsDir: "static",
productionSourceMap: false,
transpileDependencies: true,
lintOnSave: false,
chainWebpack: (config) => {
config.plugin("html").tap((args) => {
args[0].title = "DDTV WEB UI";
return args;
});
config.module.rules.delete("svg"); //重点:删除默认配置中处理svg,
config.module
.rule("svg-sprite-loader")
.test(/\.svg$/)
.include.add(resolve("src/icons")) //处理svg目录
.end()
.use("svg-sprite-loader")
.loader("svg-sprite-loader")
.options({
symbolId: "icon-[name]"
});
},
devServer: {
proxy: {
//配置跨域
"/api": {
target: "http://localhost:11419/",
changOrigin: true //允许跨域
}
}
}
};