frontPanel/src/pages/InstallQuiz/QuizInstallationCard/useWidgetUrl.ts

8 lines
219 B
TypeScript
Raw Normal View History

2024-06-04 09:09:22 +00:00
import { useDomainDefine } from "@/utils/hooks/useDomainDefine";
export function useWidgetUrl() {
const { isTestServer } = useDomainDefine();
return `https://${isTestServer ? "s." : ""}hbpn.link/export/pub.js`;
}