-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
42 lines (40 loc) · 1.26 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
/*
*
* @name : M站H5的项目
* @Info : 项目配置文件
* @Date : 09/17
*/
// 多页面配置的选项函数
const createPage = (name, title) => {
return {
entry: `src/pages/${name}/main.js`,
template: 'public/index.html',
filename: `${name}.html`,
title,
}
}
module.exports = {
// 公共的路径
publicPath: './',
// 关闭source map 加速生产环境的构建速度
productionSourceMap:false,
// 多页配置
pages: {
index: createPage('index', '首页'),
admin: createPage('admin', '关于我们')
},
// 代理配置
devServer:{
open: true, // 配置自动启动浏览器
proxy: {
'/api': {
target: 'http://dev-tiku-api.pt.chengjiukehu.com', // 域名
changOrigin: true // 开启代理:在本地会创建一个虚拟服务端,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据的交互就不会有跨域问题
},
'/api2': {
target: 'http://http://localhost:8080/', // 域名
changOrigin: true // 开启代理:在本地会创建一个虚拟服务端,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据的交互就不会有跨域问题
}
}
}
}