webpack/test/configCases/wasm/wasm-in-initial-chunk-error/webpack.config.js

17 lines
229 B
JavaScript
Raw Normal View History

module.exports = {
entry: "./index",
module: {
rules: [
{
test: /\.wat$/,
loader: "wast-loader",
type: "webassembly/experimental"
}
]
},
experiments: {
syncWebAssembly: true,
importAwait: true
}
};