Replies: 5 comments 4 replies
-
Did you figure this out? I had this issue and finally figured out a way to make it work. Instead of using a hidden field, I submit the image file directly to my It seems to be a limitation on HTML form inputs and how much data they can send. I think. |
Beta Was this translation helpful? Give feedback.
-
relevant! |
Beta Was this translation helpful? Give feedback.
-
@ljazzy This may be a helpful read... https://vercel.com/docs/storage/vercel-blob/client-upload I have not had to worry about this myself so not sure. |
Beta Was this translation helpful? Give feedback.
-
In my previous comment I erroneously blamed HTML for my lack of doc reading abilities. Turns out the node adapter comes with a default upload limit. Removing or adjusting this limit was the proper solution. I did however maintain the implementation of using a |
Beta Was this translation helpful? Give feedback.
-
Same for me almost a year later. |
Beta Was this translation helpful? Give feedback.
-
I've implemented a form in sveltekit, and in one of its fields (hidden field) I store a large base64 encoded image, which on form submit will be sent to the server. The issue is that this field is truncated at approx. 1.048.000 characters on the server. How can I prevent this?
So there has to be some sort of issue related to forms.
Beta Was this translation helpful? Give feedback.
All reactions