-
Notifications
You must be signed in to change notification settings - Fork 148
/
vue.config.js
executable file
·65 lines (61 loc) · 1.59 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
const path = require("path");
const fs = require("fs");
let devServer = {
proxy: {
// 代理
"/": {
target: "http://localhost:4000", //设置你调用的接口域名和端口号 别忘了加http
ws: false,
changeOrigin: true, // needed for virtual hosted sites
pathRewrite: {}
}
}
};
module.exports = {
devServer,
// 输出文件目录
assetsDir: "bundle",
// 修改 pages 入口
pages: {
index: {
entry: "client/main.js", // 入口
template: "public/engine-h5-long.html", // 模板
filename: "index.html" // 输出文件
}
},
css: {
loaderOptions: {
sass: {
// @/ 是 src/ 的别名
additionalData: fs.readFileSync(path.resolve(__dirname, `./client/common/styles/variables.scss`), "utf-8") // 公共变量文件注入
}
}
},
productionSourceMap: false,
publicPath: './',
// 扩展 webpack 配置
chainWebpack: config => {
// @ 默认指向 src 目录,这里要改成 examples
// 另外也可以新增一个 ~ 指向 packages
config.resolve.alias
.set("@", path.resolve("client"))
.set("@client", path.resolve("client"))
.set("@plugins", path.resolve("plugins"))
.set("@server", path.resolve("server"));
config.module
.rule("js")
.include.add(/engine-template/)
.end()
.include.add(/client/)
.end()
.include.add(/common/)
.end()
.use("babel")
.loader("babel-loader")
.tap(options => {
// 修改它的选项...
return options;
});
config.plugins.delete("hmr");
}
};