Franco Labuschagne

Results 13 comments of Franco Labuschagne
trafficstars

Any update on this thread. I am facing the same problem

Thanks @prazdevs, is there a way to use the plugin to store multiple cookies. ie A cookie with a specific key per store that you set up. Mine does not...

Maybe I did something wrong. How can I share my example?

Here is my Nuxt3 Plugin: ``` // plugins/persistedstate.js import { createNuxtPersistedState } from "pinia-plugin-persistedstate/nuxt"; import { useCookie } from "#app"; // optional import as Nuxt will auto-import it export default...

The problem I am facing is that it only persists one of my stores. This one in the example above does not persist.

Has anyone found a solution to this?

I had an issue where CORS failed for me. The following worked for me: ``` app.onAfterHandle(({ request, set }) => { if (!Bun.env.FRONTEND_URL) return false; set.headers["Access-Control-Allow-Origin"] = Bun.env.FRONTEND_URL; if (request.method...

Any progress on this. Would be an awesome feature.

Hi all. I have an issue that I just can't seem to figure out. Any help would be greatly appreciated. The error: ``` ❯ npx prisma migrate dev --name test...