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`.