14 lines
236 B
JavaScript
14 lines
236 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
entry: "./index.js",
|
|
output: {
|
|
filename: "bundle.js",
|
|
path: path.resolve(__dirname, "dist"),
|
|
},
|
|
experiments: {
|
|
asyncWebAssembly: true,
|
|
},
|
|
mode: "development",
|
|
};
|