in my html I have:
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous">
console.log('hello');
</script>
and I get nothing in console, but as soon as I remove all attributes in the script tag:
<script>
console.log('hello');
</script>
I can see the output in console. Yesterday everything worked fine, but today something is wrong.