feat: Substitute the Backend URL dynamically

This commit is contained in:
Alexander Polynomdivision
2018-10-12 17:34:32 +02:00
parent 45dc47f3b9
commit 30fda90a7b
7 changed files with 23 additions and 17 deletions

View File

@@ -10,7 +10,7 @@ import Snackbar from "@material-ui/core/Snackbar";
import { withRouter } from "react-router-dom";
import { BACKEND_URL } from "../config";
import { BACKEND_URL } from "../config.in";
interface IProps {
history: any;

View File

@@ -31,10 +31,8 @@ import { ReviewType, IReviewMetadata } from "../models/review";
import lev from "js-levenshtein";
import {
LEVENSHTEIN_MAX_DISTANCE, MAX_ERROR_THRESHOLD,
REVIEW_HELP_MOD
} from "../config";
import { BACKEND_URL } from "../config";
REVIEW_HELP_MOD, BACKEND_URL
} from "../config.in";
import { Queue } from "../utils/queue";