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

11 lines
200 B
JavaScript
Raw Normal View History

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