mirror of https://github.com/webpack/webpack.git
15 lines
204 B
JavaScript
15 lines
204 B
JavaScript
|
module.exports = {
|
||
|
output: {
|
||
|
webassemblyModuleFilename: "[modulehash].wasm",
|
||
|
publicPath: "js/"
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.wasm$/,
|
||
|
type: "webassembly/experimental"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
};
|