mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 22:54:19 +08:00
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
export function isVercelUrl(url: string): boolean {
|
|
try {
|
|
return new URL(url).hostname === 'vercel.com'
|
|
} catch {
|
|
// If the URL is invalid, return false
|
|
return false
|
|
}
|
|
}
|