Using string literals in asset path is not replacing the finger printed value because string literal expressions are not captured in the regex.
Example -
`${this.get('assetPath')}/images/asset.png` // this has no effect
this.get('assetPath') + '/images/asset.png' // this works
Using string literals in asset path is not replacing the finger printed value because string literal expressions are not captured in the regex.
Example -