webpack.config.js 311 B

1234567891011121314
  1. const CopyWebpackPlugin = require("copy-webpack-plugin");
  2. const path = require('path');
  3. module.exports = {
  4. entry: "./bootstrap.js",
  5. output: {
  6. path: path.resolve(__dirname, "dist"),
  7. filename: "bootstrap.js",
  8. },
  9. mode: "development",
  10. plugins: [
  11. new CopyWebpackPlugin(['index.html'])
  12. ],
  13. };