mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 18:19:55 +00:00
6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
|
import { getExternalHost, getSecure } from "@utils/env";
|
||
|
|
||
|
export default function getHttpBaseExternal() {
|
||
|
return `http${getSecure()}://${getExternalHost()}`;
|
||
|
}
|