forked from Tucsky/aggr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
85 lines (77 loc) · 2.13 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
var BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
process.env.VUE_APP_VERSION = require('./package.json').version
const date = new Date()
process.env.VUE_APP_BUILD_DATE = date.getDate() + ' ' + date.toLocaleString('en-US', { month: 'short' }).toLowerCase()
process.env.VUE_APP_PROXY_URL = process.env.PROXY_URL
process.env.VUE_APP_API_URL = process.env.API_URL
process.env.VUE_APP_API_SUPPORTED_PAIRS = process.env.API_SUPPORTED_PAIRS
module.exports = {
productionSourceMap: false,
publicPath: '/aggr/',
chainWebpack: config => {
config.optimization.minimizer('terser').tap(args => {
args[0].terserOptions.compress.drop_console = true
return args
})
config.module.rule('js').exclude.add(/\.worker$/)
config.module
.rule('worker')
.test(/\.worker$/)
.use('worker-loader')
.loader('worker-loader')
.tap(options => ({
...options,
worker: 'Worker'
}))
.end()
},
devServer: {
// progress: true,
// https: true,
// port: 8081,
proxy: [
'https://futures.kraken.com',
'https://api.kraken.com',
'https://api.binance.com',
'https://api.bitfinex.com',
'https://api.gdax.com',
'https://api.pro.coinbase.com',
'https://api.prime.coinbase.com',
'https://www.bitstamp.net',
'https://api.hitbtc.com',
'https://www.poloniex.com',
'https://www.okex.com',
'https://api.huobi.pro',
'https://www.bitmex.com',
'https://www.deribit.com',
'https://fapi.binance.com',
'https://dapi.binance.com',
'https://api.hbdm.com',
'https://ftx.com',
'https://api.bybit.com'
].reduce((obj, domain) => {
const reg = `${domain}`
obj[reg] = {
target: domain,
secure: false,
changeOrigin: true,
pathRewrite: {
[domain]: ''
}
}
return obj
}, {})
},
css: {
loaderOptions: {
sass: {
prependData: `@import "@/assets/sass/variables.scss";`
}
}
},
pwa: {
name: 'SignificantTrades',
themeColor: '#43a047',
msTileColor: '#43a047'
}
}