1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-05-30 03:53:30 +01:00
Files
frontend/src/util/documentation-url.ts
T
2021-04-30 12:15:31 -07:00

11 lines
283 B
TypeScript

import { HomeAssistant } from "../types";
export const documentationUrl = (hass: HomeAssistant, path: string) =>
`https://${
hass.config.version.includes("b")
? "rc"
: hass.config.version.includes("dev")
? "next"
: "www"
}.home-assistant.io${path}`;