It feels like cheating how easy it is to enable HTTP/2 on nginx for @glue after upgrading to Rails 7
The snippet below was all that was needed to eliminate the latency penalty for having individual JS files vs one monolithic file that's used with the new Import Maps
Wunderbar! 💪
# HTTP/1.1
listen 443 ssl;
# HTTP/2
listen 443 ssl http2;
Replies