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

14 lines
243 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',
devServer: {
open: true
}
};