mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
6214d510d6
* 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;
|
|
};
|