mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 22:54:42 -04:00
9 lines
247 B
TypeScript
9 lines
247 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export const useBackendBaseUrl = (): string => {
|
|
return process.env.REACT_APP_BACKEND_BASE_URL ?? '/mock-backend/'
|
|
}
|