-
Notifications
You must be signed in to change notification settings - Fork 1
/
vue.config.js
129 lines (123 loc) · 3.34 KB
/
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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
* @Author: DuYa
* @LastEditors: DuYa
*/
const path = require("path");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const isProduction = process.env.NODE_ENV === "production";
// cdn预加载
const externals = {
vue: "Vue",
"vue-router": "VueRouter",
vuex: "Vuex",
axios: "axios",
"element-ui": "ELEMENT",
echarts: "echarts"
};
// cdn环境配置
const cdn = {
// 开发环境
dev: {
css: ["https://unpkg.com/ant-design-vue@1.3.9/dist/antd.min.css"],
js: []
},
// 生产环境
build: {
css: ["https://unpkg.com/ant-design-vue@1.3.9/dist/antd.min.css"],
js: [
"https://lib.baomitu.com/vue/2.5.17/vue.min.js",
"https://lib.baomitu.com/vue-router/3.0.1/vue-router.min.js",
"https://lib.baomitu.com/vuex/3.0.1/vuex.min.js",
"https://lib.baomitu.com/axios/0.18.0/axios.min.js",
"https://unpkg.com/ant-design-vue@1.3.9/dist/antd.min.js",
"https://lib.baomitu.com/echarts/4.2.0-rc.2/echarts.min.js"
]
}
};
module.exports = {
css: {
extract: isProduction,
sourceMap: false,
modules: false,
loaderOptions: {}
},
// resolve: {
// extensions: [".js", ".ts", ".vue", ".json"]
// },
// 默认生成的静态资源文件名中包含hash以控制缓存
filenameHashing: true,
// 是否在保存的时候使用 `eslint-loader` 进行检查。
// 有效的值:`ture` | `false` | `"error"`
// 当设置为 `"error"` 时,检查出的错误会触发编译失败。
lintOnSave: true,
productionSourceMap: false,
devServer: {
port: 121
// proxy: {
// // 配置跨域
// "/api": {
// target: "http://本地ip", // test
// changeOrigin: true,
// pathRewrite: {
// "^/api": ""
// }
// }
// }
},
publicPath: process.env.NODE_ENV === "production" ? "/" : "/",
configureWebpack: config => {
if (isProduction) {
// externals 预加载
Object.assign(config, {
externals: externals
});
// 上线压缩去除console
config.plugins.push(
new UglifyJsPlugin({
uglifyOptions: {
warnings: false,
compress: {
drop_console: true,
drop_debugger: false,
pure_funcs: ["console.log"] // 去除console
}
},
sourceMap: false,
parallel: true
})
);
} else {
// 开发环境配置
/**
* 关闭host check,方便使用ngrok之类的内网转发工具
*/
config.devServer = {
disableHostCheck: true
};
}
},
chainWebpack: config => {
/**
* 删除懒加载模块的prefetch,降低带宽压力
* 而且预渲染时生成的prefetch标签是modern版本的,低版本浏览器是不需要的
*/
const svgRule = config.module.rule("svg");
svgRule.uses.clear();
svgRule.use("vue-svg-loader").loader("vue-svg-loader");
config.plugins.delete("prefetch");
config.plugin("html").tap(args => {
if (isProduction) {
args[0].cdn = cdn.build;
} else {
args[0].cdn = cdn.dev;
}
return args;
});
// 忽略监听ketcher和node_modules
config.watchOptions({
ignored: ["node_modules"]
});
// 配置项目所使用到的别名
config.resolve.alias.set("public", path.join(__dirname, "public"));
}
};