Solution: modify the index.html file in the router folder
Add the following fields before vue.use (vuerouter):
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}