Merge branch 'master' into dev

This commit is contained in:
Carson Gross
2024-04-17 10:58:46 -06:00
2 changed files with 6 additions and 2 deletions

View File

@@ -1,2 +1,6 @@
echo "htmx.min.js:"
cat dist/htmx.min.js | openssl dgst -sha384 -binary | openssl base64 -A
echo ""
echo ""
echo "htmx.js:"
cat dist/htmx.js | openssl dgst -sha384 -binary | openssl base64 -A
echo ""

View File

@@ -125,7 +125,7 @@ and get going:
Unminified version is also available
```html
<script src="https://unpkg.com/htmx.org@1.9.11/dist/htmx.js" integrity="sha384-l9bYT9SL4CAW0Hl7pAOpfRc18mys1b0wK4U8UtGnWOxPVbVMgrOdB+jyz/WY8Jue" crossorigin="anonymous"></script>
<script src="https://unpkg.com/htmx.org@1.9.12/dist/htmx.js" integrity="sha384-qbtR4rS9RrUMECUWDWM2+YGgN3U4V4ZncZ0BvUcg9FGct0jqXz3PUdVpU1p0yrXS" crossorigin="anonymous"></script>
```
While the CDN approach is extremely simple, you may want to consider [not using CDNs in production](https://blog.wesleyac.com/posts/why-not-javascript-cdn).