Hi these !
I was wondering how to properly do a URL redirect. The /**
trick seems to not work.
So my goal is to redirect any page that do not match to /oops/notfound
Any idea ?
{
path: '',
redirect: '/dashboard',
},
{
path: '/**', // Not working
redirect: '/oops/notfound'
},
{
path: '/dashboard',
component: Dashboard
},
{
path: '/oops/notfound',
component: NotFound
},