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