Hey Folks,
Hoping someone may be able to help guide me to a solution on an issue I am encountering with links to assets in my css files. So far this issue appears to be isolated to font files, but I am not sure why.
When I link the fonts via CSS using get_asset_url, the generated url is missing protocol (https) in the URL.
Hubspot CSS entry
url( {{ get_asset_url('../fonts/fa-solid-900.woff2') }} )
Hubspot Generated URL
url(//45725153.fs1.hubspotusercontent-na1.net/hubfs/45725153/raw_assets/public/arc-k_dev_theme/assets/fonts/fa-solid-900.woff2)
I have attempted to link the full path and relative path to the file. In both events, the protocol (https) is missing from the URL.
When I add the protocol (https) to the URL, the file is there.
https://45725153.fs1.hubspotusercontent-na1.net/hubfs/45725153/raw_assets/public/arc-k_dev_theme/assets/fonts/fa-solid-900.woff2
I really appreciate any help someone can provide!

