forked from sombochea/verdaccio-ui
5 lines
170 B
JavaScript
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}`;
|
|
}
|