forked from RookieCoderrr/Neo-Explorer-UI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue.config.js
executable file
·72 lines (71 loc) · 2.08 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
const webpack = require("webpack");
const CompressionWebpackPlugin = require("compression-webpack-plugin");
const productionGzipExtensions = ["js", "css"];
module.exports = {
devServer: {
proxy: {
"/api": {
changeOrigin: true,
// target: "http://127.0.0.1:1926",
// target: "https://testneofura.ngd.network:444",
// 主网
target:
process.env.VUE_APP_DEV_ENV === "TestT5"
? "https://testmagnet.ngd.network"
: "https://neofura.ngd.network",
// t5
// target:"https://testmagnet.ngd.network",
// target: "http://106.14.204.151:1926",
// target: "http://192.168.1.89:1926"
},
"/bpi": {
changeOrigin: true,
// target: "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: "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",
},
};