naithein
naithein
NNuxt
Created by naithein on 4/4/2024 in #❓・help
routes
🙇🏻
10 replies
NNuxt
Created by naithein on 4/4/2024 in #❓・help
routes
Okay, I actually figured it out. I'm using a supabase extension and I had to explicitly tell it not to redirect after making a request.
supabase: {
key: process.env.SUPABASE_KEY,
url: process.env.SUPABASE_URL,
redirect: false <--- this line right here. not sure why it isn't set that way by default
}
supabase: {
key: process.env.SUPABASE_KEY,
url: process.env.SUPABASE_URL,
redirect: false <--- this line right here. not sure why it isn't set that way by default
}
Appreciate your time!
10 replies
NNuxt
Created by naithein on 4/4/2024 in #❓・help
routes
Yep, here's my app.vue
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
Awaiting the navigateTo , and even navigating to the url ie localhost:3000/news is still showing the index page 😕
10 replies