Files
verdaccio-ui/src/webui/utils/url.js
Juan Picado @jotadeveloper 3506f32ad8 chore: sync with verdaccio master
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}`;
}