Add an option for changing the default API URL during the build

Merge #130 again. It was accidentally removed when we merged to Etebase.
master
Tom Hacohen 2020-10-11 17:37:38 +03:00
parent 1525738517
commit 0540c3bbbd
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
export const appName = "EteSync";
export const defaultServerUrl = "https://api.etebase.com/partner/etesync/";
export const defaultServerUrl = process.env.REACT_APP_DEFAULT_API_PATH ?? "https://api.etebase.com/partner/etesync/";
export const homePage = "https://www.etesync.com/";
export const faq = homePage + "faq/";
export const sourceCode = "https://github.com/etesync/etesync-web";