wasm-bindgen/examples/console_log/webpack.config.js
Alex Crichton d8e5930799 Add an example of console.log
Also clean up some other exampels
2018-03-09 10:25:48 -08:00

11 lines
184 B
JavaScript

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