@copilotkit/react-core
Version:
<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>
19 lines (17 loc) • 461 B
text/typescript
export function shouldShowDevConsole(showDevConsole: boolean | "auto"): boolean {
if (typeof showDevConsole === "boolean") {
return showDevConsole;
}
return (
getHostname() === "localhost" ||
getHostname() === "127.0.0.1" ||
getHostname() === "0.0.0.0" ||
getHostname() === "::1"
);
}
function getHostname(): string {
if (typeof window !== "undefined" && window.location) {
return window.location.hostname;
}
return "";
}