1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-30 06:56:23 +07:00
verdaccio-ui/src/webui/utils/url.js
2019-04-04 21:23:40 +02:00

5 lines
170 B
JavaScript

export function getRegistryURL() {
// Don't add slash if it's not a sub directory
return `${location.origin}${location.pathname === '/' ? '' : location.pathname}`;
}