When having multiple paths to same asset, but mixed with absolute and relative paths, prepending fails:
let relativePath = "assets/images/some-image.svg";
let absolutePath = "/assets/images/some-image.svg";
generates this:
let relativePath = "https://cloudfront.net/assets/images/some-image-fingerprinted.svg";
let absolutePath = "/https://cloudfront.net/assets/images/some-image-fingerprinted.svg";
I created PR #71 with a failing spec. I couldn't find and fix the code myself....
When having multiple paths to same asset, but mixed with absolute and relative paths, prepending fails:
generates this:
I created PR #71 with a failing spec. I couldn't find and fix the code myself....