I want to use the normal asset name, e.g. app.js when calling the asset_path helper in my views. In production, it uses the cache-busting name, e.g.
app.js
asset_path
Figured it out, pretty simple actually. Just have to add digest: false to asset_path like so:
digest: false
asset_path('app.js', digest: false)