mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 07:37:39 +00:00
feat: support for proxy server (#352)
Co-authored-by: Adrian Martin <adrian.martin@nbcuni.com>
This commit is contained in:
@@ -133,6 +133,11 @@ const page = {
|
||||
width: 1920
|
||||
};
|
||||
|
||||
const proxy = {
|
||||
address: envOrString(process.env.PROXY_ADDRESS, ''),
|
||||
port: envOrNumber(process.env.PROXY_PORT, 80)
|
||||
};
|
||||
|
||||
const store = {
|
||||
country: envOrString(process.env.COUNTRY, 'usa'),
|
||||
microCenterLocation: envOrString(process.env.MICROCENTER_LOCATION, 'web'),
|
||||
@@ -148,5 +153,6 @@ export const Config = {
|
||||
notifications,
|
||||
nvidia,
|
||||
page,
|
||||
proxy,
|
||||
store
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user