I'm facing an issue when trying to install the FilePond library using Symfony's importmap system.
I attempted to add FilePond to my project by running php bin/console importmap:require filepond (or by manually adding an entry in my importmap.php file), followed by php bin/console importmap:install. However, as soon as I run the install command, I get the following error:
In ErrorChunk.php line 73:
Body size limit exceeded
In Http2ConnectionProcessor.php line 711:
Body size limit exceeded
In Http2ConnectionProcessor.php line 757:
Body size limit exceeded
I have tried several solutions to fix this issue:
Increasing the HTTP client's body size limit by modifying the php.ini file (adjusting memory_limit, upload_max_filesize, etc.), and redefining the HTTP client service in services.yaml with the max_body_size option.
Changing the FilePond entry to use a "path" with a direct CDN URL instead of "version", to bypass automatic resolution.
Despite these attempts, the error persists, and I can't properly download the assets from the CDN.
Has anyone encountered this issue with FilePond or other libraries via importmap? Any suggestions on how to bypass this size limit?
Thanks in advance for your help!