Files
hoppscotch/middleware/parsedefaulturl.js
2019-08-30 22:01:47 -04:00

5 lines
110 B
JavaScript

export default function({ route, redirect }) {
if(route.fullPath !== '/') {
return redirect('/');
}
}