1
0
mirror of https://github.com/SomboChea/ui synced 2024-09-28 04:27:46 +07:00
verdaccio-ui/src/webui/utils/url.js

5 lines
170 B
JavaScript
Raw Normal View History

2019-02-03 17:23:33 +07:00
export function getRegistryURL() {
// Don't add slash if it's not a sub directory
return `${location.origin}${location.pathname === '/' ? '' : location.pathname}`;
}