We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
output.webassemblyModuleFilename
1 parent 0ef46b6 commit a6d818cCopy full SHA for a6d818c
src/content/configuration/output.mdx
@@ -2394,6 +2394,21 @@ module.exports = {
2394
};
2395
```
2396
2397
+## output.webassemblyModuleFilename
2398
+
2399
+`string = '[hash].module.wasm'`
2400
2401
+Specifies the filename of WebAssembly modules. It should be provided as a relative path within the `output.path` directory
2402
2403
+```javascript
2404
+module.exports = {
2405
+ //...
2406
+ output: {
2407
+ webassemblyModuleFilename: '[id].[hash].wasm',
2408
+ },
2409
+};
2410
+```
2411
2412
## output.workerChunkLoading
2413
2414
`string: 'require' | 'import-scripts' | 'async-node' | 'import' | 'universal'` `boolean: false`
0 commit comments