Pukar Sharma

Results 15 comments of Pukar Sharma

> Oh yes local storage or maybe indexed db but not memory storage. Required for my PWA

> I just managed to create a full react-query integration. This may solve this issue soon. https://stackblitz.com/github/rakkasjs/tanstack-query?file=src%2Fentry-hattip.tsx,src%2Fentry-client.tsx Thanks. You and rakkasjs both are awesome πŸ”₯

Isn't this ready to be used? Seems that all checks have been passed, but isn't merged yet πŸ€” @rgossiaux

@NoelOConnell, using your fork with sveltekit shows following error: `Failed to resolve entry for package "@rgossiaux/svelte-headlessui". The package may have incorrect main/module/exports specified in its package.json. `

> It might be a little hack-y, but I've been using this to make something similar work in one of my projects > > ```ts > import autoAdapter from "@sveltejs/adapter-auto"...

> You maybe need to worry about if possible, wouldn't it be great if there's an option to use fallback adapter like: ```js import adapter from "@sveltejs/adapter-auto"; import adapterNode from...

> Hi @sharmapukar217 , thanks for your work! Could you please write some tests for this? Sure. I'll work on it

i got a solution and is working totally fine atleast for me. just add this to vite.config.ts ```ts resolve: { alias: { ".prisma/client/index-browser": "./node_modules/.prisma/client/index-browser.js" } } Note: This is not...

> Note: This is not working with pnpm this seems to work with any of the package manager even with pnpm.. a bit hacky but atleast works ```js import {...

> for `vite` + `pnpm` the following config works fine: > > ```js > // vite.config.ts > export default defineConfig(({ mode }) => ({ > resolve: { alias: { '.prisma/client/index-browser':...