lbry-desktop/config.js
Jeremy Kauffman 56c9a1ab41 fix metadata and add redirects
add redirect, other fixes

remove password

clean up / final version

clean up / final version
2019-08-28 12:02:07 -04:00

12 lines
298 B
JavaScript

const config = {
WEBPACK_WEB_PORT: 9090,
WEBPACK_ELECTRON_PORT: 9091,
WEB_SERVER_PORT: 1337,
DOMAIN: 'https://beta.lbry.tv',
};
config.DOMAIN_LOCAL = `http://localhost:${config.WEB_SERVER_PORT}`;
config.DOMAIN_DEV = `http://localhost:${config.WEBPACK_WEB_PORT}`;
module.exports = config;