Blame core/history.js

Packit Service 0246ed
import createHashHistory from "history/lib/createHashHistory";
Packit Service 0246ed
import useQueries from "history/lib/useQueries";
Packit Service 0246ed
Packit Service 0246ed
if (!window.location.hash) {
Packit Service 0246ed
  window.location.hash = "#/";
Packit Service 0246ed
}
Packit Service 0246ed
Packit Service 0246ed
export default useQueries(createHashHistory)();