You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cause: The server is rejecting the request because the payload (data body) is too large.
Fix:
Reduce the size of the data you are sending in the PATCH request.
If you’re uploading files or large data, consider chunking, compressing, or otherwise optimizing your request.
Check StackBlitz’s limitations on project size or API payloads.
Explanation: A 413 (Payload Too Large) error typically occurs when the request payload (in this case, data sent in a PATCH request to StackBlitz’s API) exceeds the server's maximum allowed size. This may happen if you’re trying to update your project with very large files or a large amount of data at once.
Steps to Reproduce
Once modify any file and try to save changes I get the error.
Also when I use bolt.new to modify or create new code or files I get the same error.
Expected Behavior
To save the files normally.
Screenshots/Screencast
Additional Context/Questions
What is the maximum project size allowed? and what is the size allowed per file?
The text was updated successfully, but these errors were encountered:
Description of Bug
PATCH https://stackblitz.com/api/projects/... 413 (Payload Too Large) Error:
Explanation: A 413 (Payload Too Large) error typically occurs when the request payload (in this case, data sent in a PATCH request to StackBlitz’s API) exceeds the server's maximum allowed size. This may happen if you’re trying to update your project with very large files or a large amount of data at once.
Steps to Reproduce
Once modify any file and try to save changes I get the error.
Also when I use bolt.new to modify or create new code or files I get the same error.
Expected Behavior
To save the files normally.
Screenshots/Screencast
Additional Context/Questions
What is the maximum project size allowed? and what is the size allowed per file?
The text was updated successfully, but these errors were encountered: