CSS Minify and Fingerprint

Hi there,

CSS file is present, it is accessible, however, the CSS is not getting applied to the page.

After playing around with the code, I have removed absURL from the href line as follows and it is now loading.

href="{{ $style.RelPermalink }}"

It is somewhat confusing on why it was loading fine without fingerprint. I am not a coder and learning Hugo as I go. If someone knows the explanation, please do let me know.

{{ $css := resources.Get "css/style.css" }}
{{ $css_custom := resources.Get "css/custom.css" }}
{{ $style := slice $css $css_custom | resources.Concat "css/style.css" | resources.Minify | resources.Fingerprint "sha512" }}
<link rel="stylesheet"
        type="text/css"
        href="{{ $style.RelPermalink }}"
        integrity="{{ $style.Data.Integrity }}" 
        media='all' />