主頁 > 知識庫 > 淺析html webpack plugin插件的使用教程

淺析html webpack plugin插件的使用教程

熱門標簽:電話機器人批發(fā) 愛巢地圖標注 長春極信防封電銷卡公司 重慶人工智能電銷機器人報價 crm外呼系統(tǒng)好不好 強訊外呼系統(tǒng) 貴陽ai外呼系統(tǒng) 智能電銷機器人廣告語 電銷外呼線路改不外呼線路

使用html-webpack-plugin插件來啟動頁面 可將html頁面放入內(nèi)存 以提升頁面的加載速度
并且還能自動設(shè)置index.html頁面中JS文件引入的路徑

使用前提:項目中安裝了Webpack使用步驟:

步驟一、在項目的根目錄下輸入cnpm i html-webpack-plugin -D 將html-webpack-plugin插件安裝到開發(fā)依賴
其作用是根據(jù)指定的模板頁面在內(nèi)存中生成相應(yīng)的HTML頁面

步驟二、插件安裝之后 修改webpack.config.js的配置文件

在配置文件中導(dǎo)入html-webpack-plugin插件 并配置模板頁路徑和生成的頁面名稱即可

const path=require("path")
// 導(dǎo)入html-webpack-plugin
const htmlWebpackPlugin=require("html-webpack-plugin")

module.exports={
    entry:path.join(__dirname,"./src/main.js"),
    output:{
        path:path.join(__dirname,"./dist"),
        filename:"bundle.js"
    },
    // 配置插件節(jié)點
    plugins:[
        // 創(chuàng)建html-webpack-plugin插件
        new htmlWebpackPlugin({ // 設(shè)置參數(shù)
            template:path.join(__dirname,"./src/index.html"), // 指定模板頁面 以根據(jù)指定頁面生成內(nèi)存中的頁面
            filename:"index.html" // 指定生成的內(nèi)存中的頁面的名稱
        })
    ]
}

使用了html-webpack-plugin插件之后 就無需手動處理bundle.js的引用路徑了
因為 在生成后的內(nèi)存中的HTML頁面里 已經(jīng)自動引入了bundle.js的正確路徑

總結(jié) - 插件的作用:

1、自動根據(jù)指定的頁面生成一個在內(nèi)存中的頁面

2、自動在頁面中引入打包好的bundle.js

到此這篇關(guān)于淺析html webpack plugin插件的使用教程的文章就介紹到這了,更多相關(guān)html webpack plugin插件內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!

標簽:吳忠 內(nèi)蒙古 山南 廣安 保定 陜西 上海 清遠

巨人網(wǎng)絡(luò)通訊聲明:本文標題《淺析html webpack plugin插件的使用教程》,本文關(guān)鍵詞  淺析,html,webpack,plugin,插件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《淺析html webpack plugin插件的使用教程》相關(guān)的同類信息!
  • 本頁收集關(guān)于淺析html webpack plugin插件的使用教程的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章