從 0 開始的 webpack 5 專案(3) html-webpack-plugin
html-webpack-plugin
目前我們已經可以打包隨機名稱的 js 到 dist 資料夾。但因為每次打包 js 名稱都是隨機的,我們需要一個能動態引入js檔名的html template,這邊會用到 html-webpack-plugin 這個插件。
- html-webpack-plugin : 從template模板產生 html
首先安裝插件
1 | npm i -D html-webpack-plugin |
然後在 src 資料夾裡 新增 template.html,html裡的 head 可以用變數的方式帶入。
1 |
|
在 congif 檔新增 plugin ,輸出的 filename 設定為 index.html,template則連結到目前template的位置。
1 | webpack.config.js |
最後執行 npm run build 就會產生 dist 資料夾,而裡頭有輸出好的 index.html。