Gustavo Maronato
Gustavo Maronato
If you need Vue 3 support, you might want to check out [Vue Toastification v2](https://github.com/Maronato/vue-toastification/tree/next), which offers similar features and native Vue 3 support.
Hello @lllopo ! Thanks for both reporting and finding the issue. You are correct in your assessment. Back when I wrote v2.0 for Vue 3, the testing libraries available were...
Hello @anubhav217 ! Thanks for the PR, however, you seem to be trying to merge changes from `main` into `next`?
> @Maronato Exactly. Can you provide a little more info about the pr? I don't see what you meant with changes to readme, and with the changes you made to...
Seems to be a Windows thing: https://stackoverflow.com/questions/57839600/pass-environment-variable-from-command-line-to-yarn Could you try: ```bash yarn add --dev cross-env yarn run cross-env MODE=lib vite build ``` and tell me if that works? Just plain...
Replace ```js bundleMDX(source) ``` with ```js bundleMDX({ source: source }) ``` You can read more about how to use it in the [docs](https://github.com/kentcdodds/mdx-bundler#usage)
I updated the [reproduction repo](https://github.com/Maronato/next-on-pages-server-actions-repro) so `src/app/hello/page.tsx` is a server component and passes the action to the client component `src/components/MyComponent.tsx`. It works fine in dev and with `next start`, but...
This is a bug in wrangler, not next-on-pages: https://github.com/cloudflare/workers-sdk/issues/3259
~~Is the crypto API you need listed here? https://developers.cloudflare.com/workers/runtime-apis/nodejs/crypto/~~ As an alternative, consider using web crypto instead: https://developers.cloudflare.com/workers/runtime-apis/web-crypto/ I had a similar issue and solved it that way. edit: `node:crypto`...