import Vue from 'vue' import VueRouter from 'vue-router' import routes from './routes' Vue.use(VueRouter) const originalPush = VueRouter.prototype.push VueRouter.prototype.push = function push (location) { return originalPush.call(this, location).catch(err => err) } const router = new VueRouter({ mode: 'hash', base: `/${process.env.VUE_APP_ROUTER_BASE}`, routes }) export default router