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

17 lines
358 B
JavaScript
Raw Normal View History

const path = require('path');
2018-09-11 08:42:22 +03:00
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
},
2018-09-11 08:42:22 +03:00
plugins: [
new HtmlWebpackPlugin({
template: "index.html"
})
],
mode: 'development'
};