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

13 lines
358 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}`;
}
export function getBaseNamePath() {
return window.__VERDACCIO_BASENAME_UI_OPTIONS.url_prefix;
}
export function getRootPath() {
return window.__VERDACCIO_BASENAME_UI_OPTIONS.base;
}