Configuration
Last updated
Last updated
The only required configuration option is baseUrl
which will be used for API calls to your Laravel API, so you can start using the module with the following definition:
For any additional configurations, you can adjust the next list of available parameters:
Parameter | Description | Default value |
---|---|---|
You can override any of these options in the nuxt.config.ts
file:
Module configuration is exposed to runtimeConfig
property of your Nuxt app, so you can override either in sanctum
module config or runtimeConfig.public.sanctum
property.
It is possible to override options via environment variables too. It might be useful when you want to use .env
file to provide baseUrl
for Laravel API.
And here is what it will look like in .env
file:
NUXT_PUBLIC_SANCTUM_BASE_URL='http://localhost:80'
Here is an example of a full module configuration
baseUrl
The base URL of the Laravel API
undefined
origin
The URL of the current application to use in Referrer header
useRequestUrl().origin
userStateKey
The key to use to store the user identity in the useState
variable.
sanctum.user.identity
redirectIfAuthenticated
Determine to redirect when user is authenticated
false
endpoints.csrf
The endpoint to request a new CSRF token
/sanctum/csrf-cookie
endpoints.login
The endpoint to send user credentials to authenticate
/login
endpoints.logout
The endpoint to destroy current user session
/logout
endpoints.user
The endpoint to fetch current user data
/api/user
csrf.cookie
Name of the CSRF cookie to extract from server response
XSRF-TOKEN
csrf.header
Name of the CSRF header to pass from client to server
X-XSRF-TOKEN
client.retry
The number of times to retry a request when it fails
false
redirect.keepRequestedRoute
Determines whether to keep the requested route when redirecting after login
false
redirect.onLogin
Route to redirect to when user is authenticated. If set to false, do nothing
/
redirect.onLogout
Route to redirect to when user is not authenticated. If set to false, do nothing
/
redirect.onAuthOnly
Route to redirect to when user has to be authenticated. If set to false, do nothing
/login
redirect.onGuestOnly
Route to redirect to when user has to be a guest. If set to false, do nothing
/
globalMiddleware.enabled
Determines whether the global middleware is enabled
false
globalMiddleware.allow404WithoutAuth
Determines whether to allow 404 page without authentication
true
logLevel
The level to use for the logger. More details here.
3