Change schema of url environment variables (#1237)

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2021-05-05 22:33:30 +02:00 committed by GitHub
parent 41e493c8bc
commit a48b4f60bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 33 additions and 33 deletions

View file

@ -5,5 +5,5 @@
*/
export const useBackendBaseUrl = (): string => {
return process.env.REACT_APP_BACKEND_BASE_URL ?? '/mock-backend'
return process.env.REACT_APP_BACKEND_BASE_URL ?? '/mock-backend/'
}

View file

@ -8,5 +8,5 @@ import { useBackendBaseUrl } from './use-backend-base-url'
export const useCustomizeAssetsUrl = (): string => {
const backendBaseUrl = useBackendBaseUrl()
return (process.env.REACT_APP_CUSTOMIZE_ASSETS_URL || `${ backendBaseUrl }/public`)
return (process.env.REACT_APP_CUSTOMIZE_ASSETS_URL || `${ backendBaseUrl }public/`)
}

View file

@ -11,5 +11,5 @@ export const useFrontendBaseUrl = (): string => {
const location = window.location
const cleanedPathName = location.pathname.replace(pathname, '')
return `${ location.protocol }//${ location.host }${ cleanedPathName }`
return `${ location.protocol }//${ location.host }${ cleanedPathName }/`
}