-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvue.config.js
executable file
·87 lines (83 loc) · 2.37 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
// const LOCAL_API = 'http://192.168.1.89:1926';
// const VINCENT_API = 'https://testneofura.ngd.network:444';
// const proxy = {};
// const proxyInfo = (path) => {
// return {
// target: path,
// changeOrigin: true,
// // pathRewrite: {
// // [`^/${path}`]: `/`
// // }
// }
// };
// function setProxy(localApiPath){
// proxy[`/api`] = proxyInfo(localApiPath)
// console.log(proxy)
// }
// setProxy(VINCENT_API)
const webpack = require("webpack");
const CompressionWebpackPlugin = require('compression-webpack-plugin')
const productionGzipExtensions = ['js', 'css']
module.exports = {
devServer: {
proxy: {
"/api": {
changeOrigin: true,
// target: m "http://127.0.0.1:1926",
// target: "https://testneofura.ngd.network:444",
target:"https://neofura.ngd.network",
// target:"https://testmagnet.ngd.network",
// target: "http://106.14.204.151:1926",
// target: "http://192.168.1.89:1926"
},
"/bpi": {
changeOrigin: true,
// target: m "http://127.0.0.1:1926",
// target: "https://testneofura.ngd.network:444",
target:"https://neofura.ngd.network:1927",
// target: "http://106.14.204.151:1926",
// target: "http://192.168.1.89:1926"
},
"/hahaha": {
changeOrigin: true,
// target: m "http://127.0.0.1:1926",
// target: "https://testneofura.ngd.network:444",
target:"http://127.0.0.1:1926/upload",
// target: "http://106.14.204.151:1926",
// target: "http://192.168.1.89:1926"
},
},
// proxy
},
configureWebpack: {
// Set up all the aliases we use in our app.
externals:{
vue: "Vue",
// axios: "axios",
"element-plus": "ElementPlus"
},
plugins: [
new CompressionWebpackPlugin({
algorithm: 'gzip',
test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'),
threshold: 10240,
minRatio: 0.8
}) ,
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 5,
minChunkSize: 100
}),
],
},
pwa: {
name: "Vue Argon Design",
themeColor: "#172b4d",
msTileColor: "#172b4d",
appleMobileWebAppCapable: "yes",
appleMobileWebAppStatusBarStyle: "#172b4d",
},
css: {
// Enable CSS source maps.
sourceMap: process.env.NODE_ENV !== "production",
},
};