easy auth0-spa-js integration with Nuxt.js
- nuxt/nuxt.js: The Vue.js Framework
- auth0/auth0-spa-js: Auth0 authentication for Single Page Applications (SPA) with PKCE
yarn add auth0-spa-module
add modules and auth0 setting to nuxt.config.js
modules: [
'auth0-spa-module'
],
auth0: {
domain: '<YOUR_AUTH0_DOMAIN>',
clientId: '<YOUR_AUTH0_CLIENT_ID>',
audience: 'http://localhost:3000/'
}
Running demo for development
yarn install
yarn dev