DOCUMENTATION
Subresource Integrity
Subresource Integrity (SRI) is a security feature that enables browsers to verify that resources they fetch (for example, from a CDN) are delivered without unexpected manipulation.
When you build your Nalth application, we automatically calculate the cryptographic hash (SHA-384) of every JavaScript and CSS file. This hash is then added to your `script` and `link` tags in `index.html`.
html
<script src="https://cdn.example.com/app.js"
integrity="sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/ux..."
crossorigin="anonymous"></script>