This package simply builds on the official @nuxtjs/auth
module, and adds in runtime config functionality.
NOTE: This package has been updated for v5 of the @nuxtjs/auth
module, for @nuxtjs/auth
v4 compatibility, check out version 1.x.
$ yarn add -D @netsells/nuxt-auth
Add the module to your nuxt config:
module.exports = {
modules: [
'@netsells/nuxt-auth',
],
};
You can then define your config in your publicRuntimeConfig
and privateRuntimeConfig
respectively. The config follows the same structure as the config you would provide to the module directly, but nested under the auth
key. For example:
module.exports = {
publicRuntimeConfig: {
auth: {
strategies: {
local: {
endpoints: {
login: {
url: `${ process.env.APP_URL }/api/auth/login`,
},
},
},
},
},
},
};
Any values in here will be merged with the config passed to the @nuxtjs/auth
module.