refactor(web): utilize REACT_APP_BACKEND_URL for GQL and REST API URLs
This commit is contained in:
@@ -1,8 +1,25 @@
|
||||
const backendUrl = process.env.REACT_APP_BACKEND_URL;
|
||||
|
||||
const computeUrl = (url, backendUrl) => {
|
||||
/**
|
||||
* In case `backendUrl` is a host, we append the url to it.
|
||||
**/
|
||||
try {
|
||||
return new URL(url, backendUrl).toString();
|
||||
} catch (e) {
|
||||
/*
|
||||
* In case `backendUrl` is not qualified, we utilize `url` alone.
|
||||
**/
|
||||
return url;
|
||||
}
|
||||
};
|
||||
|
||||
const config = {
|
||||
baseUrl: process.env.REACT_APP_BASE_URL,
|
||||
graphqlUrl: process.env.REACT_APP_GRAPHQL_URL,
|
||||
restApiUrl: process.env.REACT_APP_REST_API_URL,
|
||||
graphqlUrl: computeUrl('/graphql', backendUrl),
|
||||
restApiUrl: computeUrl('/api', backendUrl),
|
||||
chatwootBaseUrl: 'https://app.chatwoot.com',
|
||||
supportEmailAddress: 'support@automatisch.io',
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
Reference in New Issue
Block a user