Skip to content

Commit

Permalink
Merge pull request #359 from wasmerio/small-fixes
Browse files Browse the repository at this point in the history
This makes the url a bit simpler to use
  • Loading branch information
Michael Bryan authored Dec 13, 2023
2 parents 75c4bf1 + 3d2c422 commit 9df6875
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ script into a module.

```html
<script defer type="module">
import { init, Wasmer } from "https://unpkg.com/@wasmer/sdk@latest/dist/Library.mjs";
import { init, Wasmer } from "https://unpkg.com/@wasmer/sdk@latest?module";
async function runPython() {
await init();
Expand Down
2 changes: 1 addition & 1 deletion examples/cdn/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wasmer JavaScript SDK</title>
<script defer type="module">
import { init, Wasmer } from "https://unpkg.com/@wasmer/sdk@latest/dist/Library.mjs";
import { init, Wasmer } from "https://unpkg.com/@wasmer/sdk@latest?module";

async function runPython() {
const status = document.getElementById("status");
Expand Down

0 comments on commit 9df6875

Please sign in to comment.