@copilotkit/react-core
Version:
<img src="https://github.com/user-attachments/assets/0a6b64d9-e193-4940-a3f6-60334ac34084" alt="banner" style="border-radius: 12px; border: 2px solid #d6d4fa;" />
20 lines (16 loc) • 499 B
text/typescript
function isLocalhost(): boolean {
if (typeof window === "undefined") return false;
return (
window.location.hostname === "localhost" ||
window.location.hostname === "127.0.0.1" ||
window.location.hostname === "0.0.0.0"
);
}
export function shouldShowDevConsole(showDevConsole?: boolean): boolean {
// If explicitly set, use that value
if (showDevConsole !== undefined) {
return showDevConsole;
}
// If not set, default to true on localhost
return isLocalhost();
}