diff --git a/examples/deno/fs.ts b/examples/deno/fs.ts index 3f74e2dbf3c..96f3429a1a3 100644 --- a/examples/deno/fs.ts +++ b/examples/deno/fs.ts @@ -8,7 +8,7 @@ let wasi = new WASI({ args: [], }); -const moduleBytes = fetch("https://deno.land/x/wasm/tests/mapdir.wasm"); +const moduleBytes = fetch("https://cdn.deno.land/wasm/versions/v1.0.1/raw/tests/mapdir.wasm"); const module = await WebAssembly.compileStreaming(moduleBytes); await wasi.instantiate(module, {}); diff --git a/examples/deno/helloworld.ts b/examples/deno/helloworld.ts index bb0594162fb..144c92c6b5f 100644 --- a/examples/deno/helloworld.ts +++ b/examples/deno/helloworld.ts @@ -8,7 +8,7 @@ let wasi = new WASI({ args: [], }); -const moduleBytes = fetch("https://deno.land/x/wasm/tests/demo.wasm"); +const moduleBytes = fetch("https://cdn.deno.land/wasm/versions/v1.0.1/raw/tests/demo.wasm"); const module = await WebAssembly.compileStreaming(moduleBytes); await wasi.instantiate(module, {});