wasm-bindgen/examples/fetch/webpack.config.js
2018-08-19 18:41:02 -04: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'
};