mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 09:12:57 +02:00
* feat: return button to the main page * add album route * feat: do not use explicit routes
3 lines
110 B
TypeScript
3 lines
110 B
TypeScript
export const isExternalUrl = (url: string): boolean => {
|
|
return new URL(url).origin !== location.origin;
|
|
};
|