You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, we have a couple of assets that we don't want propshaft to digest and therefore we add the predigested suffix to its file name. This worked until the new version 0.7.0. This pull request introduced changes that broke this feature. It doesn't add new assets with the digested suffix the load_path (only the first found asset).
The problem is that in this lineasset.logical_path is always filename.js and not filename-xyz.digested.js. This is because in this line it removes the predigested part from the logical path.
The text was updated successfully, but these errors were encountered:
Hi, we have a couple of assets that we don't want propshaft to digest and therefore we add the pre
digested
suffix to its file name. This worked until the new version 0.7.0. This pull request introduced changes that broke this feature. It doesn't add new assets with thedigested
suffix theload_path
(only the first found asset).The problem is that in this line
asset.logical_path
is alwaysfilename.js
and notfilename-xyz.digested.js
. This is because in this line it removes the predigested part from the logical path.The text was updated successfully, but these errors were encountered: