js-rln/example/webpack.config.js
2022-09-19 16:33:37 -04:00

15 lines
303 B
JavaScript

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