David Plugge

Results 83 comments of David Plugge

> > > same here I'm trying to run any of the examples all of them don't work > > > > > > A bit more input on what...

@Nisthar copy the contents of [this folder](https://github.com/david-plugge/supabase-auth-helpers/tree/next/packages/sveltekit/src) inside `src/lib/supabase-auth`. Adjust your `src/app.d.ts` and remove the `app.d.ts` file from the copied folder. That should be it. You can now import everything...

The auth helpers are released for v2 now so there shouldn´t be an issue anymore. l´ll close this issue now, feel free to open it again if you encounter any...

In the latest release we moved `@supabase/supabase-js` to peerDependencies

Wow awesome work! - I think i prefer `/graphiql` since it´s not really an api i guess? - `handleGraphiql` is more descriptive about whats going on and where to put...

> downloading in runtime What exactly do you mean?

Okay i read through the docs and i think online by default is the way to go. But maybe using an async import to check if the user installed the...

Sounds good :) i dont think you even need to have it as a config option ```ts try { const { renderGraphiQL } = await import('@graphql-yoga/render-graphiql'); } catch (err) {...

You can get rid of the await like this: ```ts async function getGraphiQLBody(graphiqlOptions) { try { const { renderGraphiQL: renderGraphiQLOffline } = await import('@graphql-yoga/render-graphiql') return renderGraphiQLOffline(graphiqlOptions) } catch (err) {...

I sadly don´t have that much time atm to play around with kitql but i think this issue can be closed now?