Victor Neves
Nuxt-auth-utils custom provider
what do you mean by custom provider?
https://github.com/Atinux/nuxt-auth-utils?tab=readme-ov-file#supported-oauth-providers
2 replies
[nuxt] Could not access `nitro`
Already reported the bug on sidebase
And looking into the logs from the update I have the feeling that the warning is caused by this
https://github.com/sidebase/nuxt-auth/blob/b2ad71a9d572fb3237a4c5fb32475773437d1c9f/src/runtime/utils/kit.ts#L21
12 replies
[nuxt] Could not access `nitro`
confirmed
But it appears to be with a combination of the flow I have
Did a test on their repo example upgrading to v0.8 and didn't see the warning
Need to continue investigating it to see if I can reproduce it with a mall boilerplate
12 replies
[nuxt] Could not access `nitro`
that's what I have been doing a lot while migrating this project 😅
but seriously, this one is insane, I don't have useRuntimeConfig, no custom plugins, only external modules and we even deleted all pages (only left one) and removed the javascript on app.vue and we still get the warning 😕
12 replies
[nuxt] Could not access `nitro`
It isn't very easy to share code as it's a big project 😅
Let's see if sharing in which kind of files I'm using it if it's possible to get some idea
I'm using the useRuntimeConfig on components script setup, composables and server files
12 replies
Adding a class or css to div id='__nuxt' the right way
had the same problem recently. In my case, since it was just a class, I used the option to give a new ID and refactored my CSS as it was "just" a small change
That's why I suggested in the repo to extend the nuxt config to also allow to set CSS classes
https://github.com/nuxt/nuxt/discussions/26609
14 replies
how to use router in a pinia store in Nuxt 3?
don't think so
I'm migrating a Vue 3 SSR project to Nuxt 3 and I have a store where I access the router using
this.router
and it returns undefined when I console it
Currently, I have a functionality that is broken because of that
Tried const router = useRouter()
but also returns undefined when I console it10 replies
[solved] <NuxtPage name="some-name" /> not working
Manage to solve the problem
https://stackblitz.com/edit/nuxt-starter-z7j8fy
27 replies