From db5e9bd6d3cfe1e6fb32c3750f45f1bf96ab0e07 Mon Sep 17 00:00:00 2001 From: pfg Date: Fri, 17 Jan 2025 13:47:14 -0800 Subject: [PATCH] Remove wasm loader from docs (#16479) --- docs/bundler/loaders.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/docs/bundler/loaders.md b/docs/bundler/loaders.md index 6e2a3878e7..e217898846 100644 --- a/docs/bundler/loaders.md +++ b/docs/bundler/loaders.md @@ -152,19 +152,6 @@ export default "Hello, world!"; {% /codetabs %} -### `wasm` - -**WebAssembly loader**. Default for `.wasm`. - -In the runtime, WebAssembly files can be directly imported. The file is read and returned as a `WebAssembly.Module`. - -```ts -import wasm from "./module.wasm"; -console.log(wasm); // => WebAssembly.Module -``` - -In the bundler, `.wasm` files are handled using the [`file`](#file) loader. - ### `napi` **Native addon loader**. Default for `.node`.