enso/gui/examples/01-scene/webpack.config.js
Wojciech Danilo 5bbb3e2524 Init
Original commit: c745d7d896
2019-10-06 21:47:17 +02:00

17 lines
424 B
JavaScript

const CopyWebpackPlugin = require("copy-webpack-plugin");
const HtmlWebpackPlugin = require('html-webpack-plugin')
const path = require('path');
module.exports = {
entry: "./bootstrap.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bootstrap.js",
},
mode: "development",
plugins: [
new CopyWebpackPlugin(['index.html']),
// new HtmlWebpackPlugin({template: 'index.html'}),
],
};