Get Started
@nuxtjs/supabase is a Nuxt module for first class integration with Supabase.
Checkout the Nuxt 3 documentation and Supabase to learn more.
Installation
Add @nuxtjs/supabase
dev dependency to your project:
npx nuxi@latest module add supabase
Add @nuxtjs/supabase
to the modules
section of nuxt.config.ts
:
export default defineNuxtConfig({
modules: ['@nuxtjs/supabase'],
})
Add SUPABASE_URL
and SUPABASE_KEY
to the .env
:
SUPABASE_URL="https://example.supabase.co"
SUPABASE_KEY="<your_key>"
NUXT_PUBLIC_
in order to use runtimeConfig.Options
You can configure the supabase module by using the supabase
key in nuxt.config
:
export default defineNuxtConfig({
// ...
supabase: {
// Options
}
}
url
Default: process.env.SUPABASE_URL
(ex: https://example.supabase.co)
The unique Supabase URL which is supplied when you create a new project in your project dashboard.
key
Default: process.env.SUPABASE_KEY
Supabase 'anon key', used to bypass the Supabase API gateway and interact with your Supabase database making use of user JWT to apply RLS Policies.
serviceKey
Default: process.env.SUPABASE_SERVICE_KEY
Supabase 'service role key', has super admin rights and can bypass your Row Level Security.
redirect
Default: true
Redirect automatically to the configured login page if a non authenticated user is trying to access a guarded. You can disable all redirects by setting this option to false.
redirectOptions
Default:
redirectOptions: {
login: '/login',
callback: '/confirm',
include: undefined,
exclude: [],
cookieRedirect: false,
}
login
: User will be redirected to this path if not authenticated or after logout.callback
: This is the path the user will be redirect to after supabase login redirection. Should match configuredredirectTo
option of your signIn method. Should also be configured in your Supabase dashboard underAuthentication -> URL Configuration -> Redirect URLs
.include
: Routes to include in the redirect.['/admin(/*)?']
will enable the redirect only for theadmin
page and all sub-pages.exclude
: Routes to exclude from the redirect.['/foo', '/bar/*']
will exclude thefoo
page and all pages in yourbar
folder.cookieRedirect
: Sets a cookie containing the path an unauthenticated user tried to access. The cookie can then be used on the/confirm
page to redirect the user to the page they previously tried to visit.
cookieName
Default: sb
Cookie name used for storing the redirect path when using the redirect
option, added in front of -redirect-path
to form the full cookie name e.g. sb-redirect-path
cookieOptions
cookieOptions: {
maxAge: 60 * 60 * 8,
sameSite: 'lax',
secure: true
}
Options for cookies used to share tokens between server and client, refer to cookieOptions for available settings. Please note that the lifetime set here does not determine the Supabase session lifetime.
types
Default: ./types/database.types.ts
The path for the generated Supabase TypeScript definitions. The database definitions will be automatically passed to all clients: useSupabaseClient
, serverSupabaseClient
and serverSupabaseServiceRole
.
## Generate types from live database
supabase gen types --lang=typescript --project-id YourProjectId > types/database.types.ts
## Generate types when using local environment
supabase gen types --lang=typescript --local > types/database.types.ts
Set to false
to disable.
Check Supabase documentation for further information.
clientOptions
Default:
clientOptions: { }
Supabase client options available here merged with default values from @supabase/ssr
:
clientOptions: {
auth: {
flowType: 'pkce',
autoRefreshToken: isBrowser(),
detectSessionInUrl: isBrowser(),
persistSession: true,
},
}
Demo
A live demo is made for see this module in action on n3-supabase.netlify.app, read more in the demo section.
Also checkout the YouTube video about its usage in a live demo.