Recently, I used Dynamically add hash after each compile for external resources such as script and link introduced in HTML files to prevent problems with referencing cached external files You can generate and create HTML entry files. For example, a single page can generate an HTML file entry. Configuring N 1. Installation cnpm i webpack-plugin -D 2. Reference in webpack.config.json const path = require('path') const htmlWebpackPlugin = require('html-webpack-plugin') //First stepmodule.exports = { entry: path.join(__dirname, './src/main.js'), output: { path: path.join(__dirname, './dist'), filename: 'bundle.js', }, mode: 'development', devServer: { open: true, port: 8080, hot: true, contentBase: 'src' }, plugins: [ new htmlWebpackPlugin({ //Step 2 template: path.join(__dirname, './src/index.html'), //Specify the path of the generated template filename: 'index.html' //Specify the name of the generated page }) ] } 3. The role of html-webpack-plugin 1. Generate a file of the specified template in memory, which is faster to access 2. Automatically add bundle.js file to the specified template file Summarize This is the end of this article on the detailed use of html-webpack-plugin. For more information on the use of html-webpack-plugin, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! |
<<: Detailed explanation of the background-position percentage principle
>>: Why does your height:100% not work?
1. Use .gifs rather than .jpgs. GIFs are smaller ...
I installed a new version of MySQL (8.0.21) today...
Table of contents Introduction to frm files and i...
1. Make a repo file Refer to the official install...
When the same function and HTML code are used mul...
Editor: This article discusses the role that inte...
1. Create insert into [table name] (field1, field...
1. First, we create a .json file for interactive ...
Table of contents Overview What is Image Compress...
If you use CSS don't forget to write DOCTYPE, ...
Openlayers is a modular, high-performance and fea...
I just started learning about databases recently....
HTML form tag tutorial, this section mainly expla...
1. Introduction MySQL Group Replication (MGR for ...
Table of contents 1. watch monitoring properties ...