Я хотел перенаправить свое приложение на исходную страницу после успешного входа в приложение vue. Ниже приведен фрагмент кода:
Vue.use(VueAuthenticate, {
baseUrl: 'http://localhost:3000',
providers: {
linkedin: {
clientId: 'abc',
clientSecret:'def',
name: 'linkedin',
redirectUri: 'abc.com/linkedin-success',
requiredUrlParams: ['scope','code','redirectUri','clientId'],
scope: ['r_emailaddress', 'r_liteprofile'],
scopeDelimiter: ',',
oauthType: '2.0',
popupOptions: { width: 527, height: 582 },
authRedirect: {path: '/linkedin-success'},
},[enter image description here][1]
}
})
Я получил эту ошибку