mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 01:40:13 -04:00
f7ab150cc3
* chore: remove old vercel integration * remove more unused files
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
|
|
}
|
|
}
|