You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.
The javascript rewrites on the page are not carrying over the pre-existing nonce attribute and value.
eg. source script
<script nonce="a2fa9f8ec70cf6b554e0b13dd22d41c1" src="asset/script/domready.js"></script>
Pagespeed rewrites the scripts but fails to maintain the nonce
eg. result
<script data-pagespeed-no-defer>(function(){
the solution is to carry over the nonce so the page can execute the script
eg. solution
<script nonce="a2fa9f8ec70cf6b554e0b13dd22d41c1" data-pagespeed-no-defer>(function(){
Thank you
The text was updated successfully, but these errors were encountered: