Hello, I am using Okta with OIDC for Vue, https://github.com/okta/okta-oidc-js/tree/master/packages/okta-vue. I have followed the instructions given both in that readme and in the Okta Documentation (both https://developer.okta.com/docs/guides/sign-into-spa/vue/before-you-begin/ and https://developer.okta.com/quickstart/#/vue/nodejs/express). However, I continue to get Uncaught Error: Your Okta URL is missing. You can copy your domain from the Okta Developer Console. Follow these instructions to find it: https://bit.ly/finding-okta-domain. The issue appears to be with my Vue OIDC configuration -
Vue.use(Auth, {
issuer: 'https://mycompany.okta.com/oauth2/default',
clientId: 'myclientid',
redirectUri: REDIRECT_URI,
scopes: ['openid', 'profile', 'email'],
pkce: true,
})
But I don’t see anything wrong. My app has been registered on Okta as a single page app. Any ideas?