Skip to content

Commit 42a196b

Browse files
committed
Download all submissions and fix for Markdown triple clicking
1 parent 337ef95 commit 42a196b

File tree

14 files changed

+1827
-44
lines changed

14 files changed

+1827
-44
lines changed

config/constants/development.js

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ const DOMAIN = 'topcoder-dev.com'
22
const DEV_API_HOSTNAME = `https://api.${DOMAIN}`
33

44
module.exports = {
5+
API_V2: `${DEV_API_HOSTNAME}/v2`,
6+
API_V3: `${DEV_API_HOSTNAME}/v3`,
7+
API_V4: `${DEV_API_HOSTNAME}/v4`,
8+
API_V5: `${DEV_API_HOSTNAME}/v5`,
59
ACCOUNTS_APP_CONNECTOR_URL: `https://accounts-auth0.${DOMAIN}`,
610
ACCOUNTS_APP_LOGIN_URL: `https://accounts-auth0.${DOMAIN}`,
711
COMMUNITY_APP_URL: `https://www.${DOMAIN}`,

config/constants/production.js

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ const DOMAIN = 'topcoder.com'
22
const PROD_API_HOSTNAME = `https://api.${DOMAIN}`
33

44
module.exports = {
5+
API_V2: `${PROD_API_HOSTNAME}/v2`,
6+
API_V3: `${PROD_API_HOSTNAME}/v3`,
7+
API_V4: `${PROD_API_HOSTNAME}/v4`,
8+
API_V5: `${PROD_API_HOSTNAME}/v5`,
59
ACCOUNTS_APP_CONNECTOR_URL: process.env.ACCOUNTS_APP_CONNECTOR_URL || `https://accounts-auth0.${DOMAIN}`,
610
ACCOUNTS_APP_LOGIN_URL: `https://accounts-auth0.${DOMAIN}`,
711
COMMUNITY_APP_URL: `https://www.${DOMAIN}`,

config/webpack.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,11 @@ module.exports = function (webpackEnv) {
558558
tls: 'empty',
559559
child_process: 'empty'
560560
},
561+
externals: {
562+
/* NodeJS library for https://logentries.com. It is server-side only. Exclude it as null. */
563+
le_node: 'null',
564+
module: 'null'
565+
},
561566
// Turn off performance processing because we utilize
562567
// our own hints via the FileSizeReporter
563568
performance: false

0 commit comments

Comments
 (0)