Amr Noman

Results 7 comments of Amr Noman

What version of node.js are you using? Make sure you are using the LTS version, not the latest one.

Are you getting this problem on a fresh install or after making modifications? Please try running the verified middleware on a fresh install of this repo and see if you...

That is weird, are you running your Laravel app normally on `localhost:8000`?

Well, issue #16 was getting similar console warnings and eventually it turned out he was using a custom domain name for his Laravel app but did not modify the `.env`...

This seems to be fixed in Node.js As per [this comment](https://github.com/unjs/ofetch/issues/156#issuecomment-1702503646), if you are facing this problem try updating your Node.js version.

Hi @misbahansori, You can already use this as a [Nuxt Layer](https://nuxt.com/docs/guide/going-further/layers). Add this to your existing Nuxt project's configuration: ```ts // nuxt.config.ts export default defineNuxtConfig({ extends: ["github:amrnn90/breeze-nuxt#master"], }); ``` And...

I have added a generic type for the user, so now you can wrap the `useAuth` composable with your own like this: ```ts // composables/useMyAuth.ts type User = { first_name:...