forked from sombochea/verdaccio-ui
* feat: browser history is aware of basename * test: fix ui options global object * chore: fix comment
13 lines
217 B
JavaScript
13 lines
217 B
JavaScript
/**
|
|
* @prettier
|
|
*/
|
|
|
|
import { createBrowserHistory } from 'history';
|
|
import { getBaseNamePath } from './utils/url';
|
|
|
|
const history = createBrowserHistory({
|
|
basename: getBaseNamePath(),
|
|
});
|
|
|
|
export default history;
|