wasm-bindgen/examples/wasm-in-wasm/webpack.config.js

11 lines
184 B
JavaScript
Raw Normal View History

const path = require('path');
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "index.js",
},
mode: "development"
};