1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-27 21:45:33 +07:00
verdaccio-ui/src/history.ts

9 lines
195 B
TypeScript
Raw Normal View History

2019-03-28 05:39:06 +07:00
import { createBrowserHistory } from 'history';
import { getBaseNamePath } from './utils/url';
2019-02-03 17:23:33 +07:00
const history = createBrowserHistory({
basename: getBaseNamePath(),
});
2019-02-03 17:23:33 +07:00
export default history;