I added a requirement for a non-silverstripe (jQuery) plugin to my (root) composer.json file. So SilverStripe automatically installs it in the /vendor directory. Unfortunately then loading any .js files will generate a 403 due to this line in .htaccess:
RewriteRule ^vendor(/|$) - [F,L,NC]
I could possibly add a composer requirement for a plugin that supports defining an installer path for individual packages, or maybe add an extra rewite rule to .htaccess for this specific package, but what would be the preferred Silvestripe way to do this? How is this supposed to work?