Update link to not use /latest (#1847)

* Update link in README.me to use specific version, not /latest
This commit is contained in:
Jeff Glass
2023-11-07 16:37:10 -06:00
committed by GitHub
parent 2d50ca86a6
commit d58237ea15

View File

@@ -20,8 +20,14 @@ To try PyScript, import the appropriate pyscript files into the `<head>` tag of
```html
<head>
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
<link
rel="stylesheet"
href="https://pyscript.net/releases/2023.11.1/core.css"
/>
<script
type="module"
src="https://pyscript.net/releases/2023.11.1/core.js"
></script>
</head>
```