1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-06 12:21:06 +00:00

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
}
};