2018-11-15 17:35:47 +01:00
|
|
|
/**
|
|
|
|
* Host of the instance
|
|
|
|
*
|
|
|
|
* Required
|
|
|
|
*
|
|
|
|
* Example: framameet.org
|
|
|
|
*/
|
2019-08-05 10:39:40 +02:00
|
|
|
export const MOBILIZON_INSTANCE_HOST = window.location.hostname;
|
2018-11-15 17:35:47 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* URL on which the API is. "/api" will be added at the end
|
|
|
|
*
|
|
|
|
* Required
|
|
|
|
*
|
|
|
|
* Example: https://framameet.org
|
|
|
|
*/
|
2019-08-05 10:39:40 +02:00
|
|
|
export const GRAPHQL_API_ENDPOINT = window.location.origin;
|
2018-11-15 17:35:47 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* URL with path on which the API is. Replaces GRAPHQL_API_ENDPOINT if used
|
|
|
|
*
|
|
|
|
* Optional
|
|
|
|
*
|
|
|
|
* Example: https://framameet.org/api
|
|
|
|
*/
|
2019-08-05 10:39:40 +02:00
|
|
|
export const GRAPHQL_API_FULL_PATH = `${window.location.origin}/api`;
|