Review webpack (c) --- Output Management

1, a plurality of output bundle

dist/index.html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>Output Management</title>
  </head>
  <body>
  <script type="text/javascript" src="app.bundle.js"></script><script type="text/javascript" src="print.bundle.js"></script></body>
</html>

webpack.config.js

 entry: {
        app: './src/index.js',
        print: './src/print.js'
    },
    output:{
        filename: '[name].bundle.js',
        path: path.resolve(__dirname, 'dist')
    },
 
2, setting HtmlWebpackPlugin
npm install --save-dev html-webpack-plugin
However HtmlWebpackPlugin it will use the newly generated index.html file, to replace our original
 
 
webpack.config.js
 const path = require('path');
+ const HtmlWebpackPlugin = require('html-webpack-plugin');

  module.exports = {
    entry: {
      app: './src/index.js',
      print: './src/print.js'
    },
+   plugins: [
+     new HtmlWebpackPlugin({
+       title: 'Output Management'
+ }) + ], output: { filename: '[name].bundle.js', path: path.resolve(__dirname, 'dist') } };

3, clean up / dist folder

npm install clean-webpack-plugin --save-dev

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
+ const CleanWebpackPlugin = require('clean-webpack-plugin');

module.exports = {
entry: {
app: './src/index.js',
print: './src/print.js'
},
plugins: [
+ new CleanWebpackPlugin(['dist']),
new HtmlWebpackPlugin({
title: 'Output Management'
})
],
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist')
}
};

The official website of the two pit:

 

Looked at the wording githup, clean-webpack-plugin is now introduced a new version has been changed const  CleanWebpackPlugin  the require ( 'clean-webpack-plugin ' ) ; Change to

Npm run build and then run the following error

 

 Parameters which can be removed
new CleanWebpackPlugin ()

 

 

 

Guess you like

Origin www.cnblogs.com/pikachuworld/p/11525135.html