Files
immich/web/src/lib/utils/navigation.ts
martin 6214d510d6 fix(web): back button from person detail page (#5047)
* feat: return button to the main page

* add album route

* feat: do not use explicit routes
2023-11-14 17:55:03 -05:00

4 lines
110 B
TypeScript

export const isExternalUrl = (url: string): boolean => {
return new URL(url).origin !== location.origin;
};