js-rln/webpack.config.cjs
2022-09-23 13:03:16 +10:00

22 lines
352 B
JavaScript

const path = require('path');
module.exports = {
entry: "./dist/index.js",
output: {
path: path.resolve(__dirname, "bundle"),
filename: "index.js",
},
mode: "production",
experiments: {
asyncWebAssembly: true
},
module: {
rules: [
{
test: /\.wasm$/,
type: "webassembly/async",
},
]
}
};