webpack.config.js 298 B

12345678910111213
  1. const path = require('path');
  2. const HtmlWebpackPlugin = require('html-webpack-plugin');
  3. module.exports = {
  4. entry:'./src/index.js',
  5. plugins:[
  6. new HtmlWebpackPlugin({
  7. template:'./src/index.html',
  8. filename:'demo.html'
  9. })
  10. ],
  11. mode:'development'
  12. }