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

11 lines
200 B
JavaScript
Raw Normal View History

2018-08-18 17:20:42 -04:00
const path = require('path');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
},
mode: 'development'
};