I was in the GoRails Discord and @Sean posted about RAILS_ASSET_URL
. This is part of the Propshaft pipeline and let’s you access your assets without needing their digest hash. ie this.img = RAILS_ASSET_URL("/image.png")
becomes this.img = "/assets/image-28sd34.png"
once your javascript is served.
I’ve needed something like this a few times so this is just wonderful to have. Thanks for sharing @Sean.