Kal Erikson
Kal Erikson
Any update on this?
I have a similar case (2 deployments). I have a Nuxt app deployed on NuxtHub (ie Cloudflare), which is my official production deploy for end-users. The app also has a...
Yes, some condition loading for modules would be best, then it's explicit & clear in nuxt.config. Side note: Looked at the logs for my "Nuxthub deploy" github action, looks like...
Ah, I see this library now: https://github.com/imgix/imgix-management-js
Nuxt user here, new to Remix (ie now React Router 7) and I have definitely been spoiled, lol. I don't know about mobile or swiping, however I have the same...
@vejja I'm still gathering information and learning, however just to affirm... I am successfully using env's in other contexts within my app, both in dev and prod. For instance, I...
Is this still an active issue? Neither of the earlier OP workarounds seemed to work on initial trials. I'm interested in limiting characters in a textarea element (ultimately to be...
During experimenting, observed a side issue: Given `message` bound to a `` element: Although perhaps improper, this silently fails and breaks my form (submit logic doesn't even trigger): `message: z.string().length(256,...
For the time being I've dropped this module in favour of just some custom scripts. Not elegant at all, but works. **For local:** uses `nodemailer` **For Cloudflare prod:** uses `worker-mailer`...
@stuible 's workaround works for me except I had to change one thing: With this line... `const hookToWait = (hasTransition(from) && hasTransition(to)) ? 'page:transition:finish' : 'page:finish'` ... and case `page:transition:finish`,...