mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 18:21:39 +03:00
5bbb3e2524
Original commit: c745d7d896
17 lines
424 B
JavaScript
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'}),
|
|
],
|
|
};
|