14 lines
368 B
JavaScript
14 lines
368 B
JavaScript
const config = {
|
|
WEBPACK_WEB_PORT: 9090,
|
|
WEBPACK_ELECTRON_PORT: 9091,
|
|
WEB_SERVER_PORT: 1337,
|
|
DOMAIN: 'lbry.tv',
|
|
URL: 'https://lbry.tv',
|
|
SITE_TITLE: 'lbry.tv',
|
|
LBRY_TV_API: 'https://api.lbry.tv',
|
|
};
|
|
|
|
config.URL_LOCAL = `http://localhost:${config.WEB_SERVER_PORT}`;
|
|
config.URL_DEV = `http://localhost:${config.WEBPACK_WEB_PORT}`;
|
|
|
|
module.exports = config;
|