I'm not using codepen for this issue, cause it's not applicable, I need to show you code inside <head>.
So, by copy and pasting from your homepage, I've created this HTML code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/bootstrap-material-design.min.css" integrity="sha384-R80DC0KVBO4GSTw+wZ5x2zn2pu4POSErBkf8/fSFhPXHxvHJydT0CSgAP2Yo2r4I" crossorigin="anonymous">
</head>
<body>
Test
</body>
</html>
And on web inspector, on Chrome I get this error:
Failed to find a valid digest in the 'integrity' attribute for resource 'https://unpkg.com/[email protected]/dist/css/bootstrap-material-design.min.css' with computed SHA-256 integrity 'KIbybAbEyYs4X+k2w2dwkCB0lvZaTK5cHnyJPVO7nz8='. The resource has been blocked.
On firefox:
None of the “sha384” hashes in the integrity attribute match the content of the subresource.
I'm using an older version (in other project), I've copy and pasted from your home page, and that one is working:
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/bootstrap-material-design.min.css" integrity="sha384-R80DC0KVBO4GSTw+wZ5x2zn2pu4POSErBkf8/fSFhPXHxvHJydT0CSgAP2Yo2r4I" crossorigin="anonymous">
And we can see the value for integrity attr is the same for both, it shouldn't be, right?
sha384-R80DC0KVBO4GSTw+wZ5x2zn2pu4POSErBkf8/fSFhPXHxvHJydT0CSgAP2Yo2r4I
Yes I probably forgot to update the hash, I'll do it
Most helpful comment
Yes I probably forgot to update the hash, I'll do it