mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 23:01:29 +03:00
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'}),
|
||
|
],
|
||
|
};
|