mirror of
https://github.com/logos-messaging/js-rln.git
synced 2026-01-03 14:13:08 +00:00
22 lines
352 B
JavaScript
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",
|
|
},
|
|
]
|
|
}
|
|
};
|