diff options
author | 2021-11-01 14:25:10 -0500 | |
---|---|---|
committer | 2021-11-01 15:25:10 -0400 | |
commit | 09f69f3915d0865a464b5023257a7573407c7aee (patch) | |
tree | 656f1d03bcf9f7bc949dd924f668e196cebea3c4 /docs/src/pages/guides | |
parent | cfd66d2c49db9a9604c7370c70c4a3230040b6aa (diff) | |
download | astro-09f69f3915d0865a464b5023257a7573407c7aee.tar.gz astro-09f69f3915d0865a464b5023257a7573407c7aee.tar.zst astro-09f69f3915d0865a464b5023257a7573407c7aee.zip |
Remove reference to nonexistent `/guides/wasm.md` (#1662)
Maybe we could instead actually flesh out what *using wasm with astro* means? Is this something where we could pull prior art from the playground site?
Diffstat (limited to 'docs/src/pages/guides')
-rw-r--r-- | docs/src/pages/guides/imports.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/guides/imports.md b/docs/src/pages/guides/imports.md index 7257a1105..a690802f6 100644 --- a/docs/src/pages/guides/imports.md +++ b/docs/src/pages/guides/imports.md @@ -108,7 +108,7 @@ It can also be useful to place images in the `public/`-folder as explained on th const wasm = await WebAssembly.instantiateStreaming(fetch('/example.wasm')); ``` -Astro supports loading WASM files directly into your application using the browser's [`WebAssembly`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly) API. Read our [WASM guide](/guides/wasm) to learn more. +Astro supports loading WASM files directly into your application using the browser's [`WebAssembly`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly) API. ## NPM Packages |