wasm-bindgen/examples/todomvc/webpack.config.js
2018-10-23 14:15:42 +01:00

11 lines
200 B
JavaScript

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