wasm-bindgen/examples/add/webpack.config.js
2018-04-20 22:38:22 -07: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"
};