example usage demo

This commit is contained in:
2024-08-30 12:25:04 +03:00
parent 7caf011bf8
commit fa44bfe2eb
3 changed files with 102 additions and 0 deletions

13
webpack.config.js Normal file
View File

@@ -0,0 +1,13 @@
const path = require("path");
module.exports = {
entry: "./index.js",
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "dist"),
},
experiments: {
asyncWebAssembly: true,
},
mode: "development",
};