unrevised6419
unrevised6419
Are you able to provide a reproduction repo?
I think in your use case `useAsyncQuery` is used wrong. `useAsyncQuery` should be used in script/setup context, you are using it inside a pinia action in your case you should...
`useAsyncQuery` is a hook composable, it needs to be called only in `setup` for the best functionality. It cannot be called in other places. These are the Vue rules, it...
@jumptrnr, do you have `proxyCookies` set to `false` in the configuration? If it is true. probably this PR will fix the issue https://github.com/nuxt-modules/apollo/pull/618 PS: This library does support SSR; we...
> @slavanossar any resolution for npm? ```json { "overrides": { "tslib": "2.5.1" } } ```
Related issues: - https://github.com/nuxt/nuxt/issues/19265 - https://github.com/vueuse/motion/issues/102 - https://github.com/nuxt-modules/apollo/issues/516
@Sina-Afsharmanesh check one of these solutions. Both should work. https://github.com/nuxt/nuxt/issues/19265#issuecomment-1702014262
Hey, @jorgebucaran, can you please take a look at this PR?! 👀
I will take a look, but the failing tests seem to not be related to this PR 🤔 I might open another PR to fix the tests.
I tried locally with different versions of node 10/12/14, and it seems the problem can be in the incompatibility of the libraries. For example, we try to run Rollup on...