teableio/teable

View on GitHub
apps/nextjs-app/src/features/app/utils/is-local.ts

Summary

Maintainability
A
0 mins
Test Coverage
export function isLocalhost() {
  const hostname = window.location.hostname;

  return hostname === 'localhost' || hostname === '127.0.0.1';
}