diff --git a/src/scripts/constants.ts b/src/scripts/constants.ts index 1f835a1..a4b0cce 100644 --- a/src/scripts/constants.ts +++ b/src/scripts/constants.ts @@ -1,5 +1,6 @@ -// export const backendUrl = 'http://localhost:5000' +const production = true + export const hosts = { api: 'https://profile-api.hydev.org', - content: 'https://profile-content.hydev.org' + content: production ? 'https://profile-content.hydev.org' : 'http://localhost:8082' }