supabase icon indicating copy to clipboard operation
supabase copied to clipboard

nuxt.config.ts type bug

Open KenZync opened this issue 4 months ago • 2 comments

Version

@nuxtjs/supabase: 1.1.7 nuxt: 3.11.1

Reproduction Link

Steps to reproduce

-init new nuxt project -install supabase -add config

What is Expected?

should be like this, no error , this is old version nuxt 3.8.2, supabase 1.1.4 image

What is actually happening?

it is throwing error for some reason nuxt.config.ts

export default defineNuxtConfig({
  devtools: { enabled: true },
  modules: [
    '@nuxt/ui',
    '@nuxtjs/supabase'
  ],
  supabase: {
    redirectOptions: {
      login: '/',
      callback: '/confirm'
    }
  },
})

image

KenZync avatar Mar 27 '24 14:03 KenZync