forked from Tucsky/aggr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
158 lines (148 loc) · 4.57 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
const fs = require('fs')
const path = require('path')
const ServiceWorkerWebpackPlugin = require('serviceworker-webpack-plugin')
const WebpackPwaManifest = require('webpack-pwa-manifest')
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()
const exchanges = []
fs.readdirSync('./src/worker/exchanges/').forEach(file => {
if (/\w+\.ts$/.test(file) && file !== 'index.ts') {
exchanges.push(file.replace(/\.ts$/, ''))
}
})
process.env.VUE_APP_EXCHANGES = exchanges.join(',')
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
process.env.VUE_APP_API_SUPPORTED_TIMEFRAMES = process.env.API_SUPPORTED_TIMEFRAMES
const publicPath = process.env.PUBLIC_PATH || '/'
module.exports = {
productionSourceMap: false,
publicPath: publicPath,
configureWebpack: {
plugins: [
new ServiceWorkerWebpackPlugin({
entry: path.join(__dirname, 'src/sw.js'),
publicPath: publicPath
}),
new WebpackPwaManifest({
start_url: publicPath,
name: 'SignificantTrades',
short_name: 'AGGR',
icons: [
{
src: path.resolve('public/android-chrome-192x192.png'),
sizes: '192x192',
type: 'image/png'
},
{
src: path.resolve('public/android-chrome-512x512.png'),
sizes: '512x512',
type: 'image/png'
}
],
theme_color: '#171b29',
background_color: '#171b29',
display: 'standalone'
/*name: 'My Progressive Web App',
short_name: 'MyPWA',
description: 'My awesome Progressive Web App!',
background_color: '#ffffff',
crossorigin: 'use-credentials', //can be null, use-credentials or anonymous
icons: [
{
src: path.resolve('src/assets/icon.png'),
sizes: [96, 128, 192, 256, 384, 512] // multiple sizes
},
{
src: path.resolve('src/assets/large-icon.png'),
size: '1024x1024' // you can also use the specifications pattern
},
{
src: path.resolve('src/assets/maskable-icon.png'),
size: '1024x1024',
purpose: 'maskable'
}
]*/
})
]
},
/*configureWebpack: config => {
if (process.env.NODE_ENV === 'development') {
config.devtool = 'eval-source-map'
config.output.devtoolModuleFilenameTemplate = info =>
info.resourcePath.match(/\.vue$/) && !info.identifier.match(/type=script/) // this is change ✨
? `webpack-generated:///${info.resourcePath}?${info.hash}`
: `webpack-yourCode:///${info.resourcePath}`
config.output.devtoolFallbackModuleFilenameTemplate = 'webpack:///[resource-path]?[hash]'
}
},*/
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: {
/*host: 'localhost',
// 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: 'AGGR',
themeColor: '#43a047',
msTileColor: '#43a047'
}
}