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
| "use strict";
| // Template version: 1.3.1
| // see http://vuejs-templates.github.io/webpack for documentation.
|
| const path = require("path");
|
| module.exports = {
| dev: {
| // Paths
| assetsSubDirectory: "static",
| assetsPublicPath: "/",
| proxyTable: {
| // '/api': {
| // target:'http://43.198.126.79:8091/',
| // secure: false,
| // changeOrigin: true,
| // pathRewrite: {
| // '^/api': '/'
| // }
| // },
| "/": {
| // target: 'https://pc.zsycyy.com',
| // target: 'http://www.shehua56.com',
| target: "http://121.43.237.202:8091/",
| // target:'https://api.guosen.org/',
| secure: false,
| changeOrigin: true,
| pathRewrite: {
| "^/": "/"
| }
| },
| "/dk": {
| target: "http://121.43.237.202:8091/",
| secure: false,
| changeOrigin: true,
| pathRewrite: {
| "^/dk": "/dk"
| }
| }
| },
| }
| };
|
|