Luiz Eduardo Zappa
Luiz Eduardo Zappa
> > > I've added a bunch of remapping in _vimrc > > ``` > " Conemu setup > if !empty($CONEMUHOOKS) > " Conemu required for 256 bit color >...
> Seems like Safari is not accepting `secure` cookies on `localhost`. So for users that want to use Safari for local development, you can fix this bug by setting `cookieOptions.secure`...
@nonInfelix , it's just good practice. Working with environment variables (and `.env` files) allows you to change settings between environments (production, development, ...) without having to change several parts of...
Up for this feature! For now a workaround is to reverse engineer this regex here to behave like an include: https://github.com/nuxt-modules/supabase/blob/0294a01cf71f10dad49679a4443eb224c4ec92bf/src/runtime/plugins/auth-redirect.ts#L15 For instance, If you only need the `/dashboard` path...
In case anyone is having this problem running `Nuxt` locally, you can create a plugin as follows: ```javascript export default defineNuxtPlugin(() => { const config = useRuntimeConfig(); if (process.server &&...
To get around the 400ms startup time limit of Cloudflare Workers, I just import the library within fetch. ```javascript export default { async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise...
amazing work!
I came across this error too. It happens in `nuxt.config.ts` when using an incorrect config (`origin`) for this module. Because I didn't set the `AUTH_ORIGIN` variable, I received a message...