首页 > 网页制作 > HTML/Xhtml

浅析html webpack plugin插件的使用教程 游戏攻略

admin HTML/Xhtml 2022-02-05 03:18:18 html   webpack   plugin插件   html-webpack-plugin"

使用html-webpack-plugin插件来启动页面 可将html页面放入内存 以提升页面的加载速度
并且还能自动设置index.html页面中JS文件引入的路径

使用前提:项目中安装了Webpack使用步骤:

步骤一、在项目的根目录下输入cnpm i html-webpack-plugin -D 将html-webpack-plugin插件安装到开发依赖
其作用是根据指定的模板页面在内存中生成相应的HTML页面

在这里插入图片描述

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

在配置文件中导入html-webpack-plugin插件 并配置模板页路径和生成的页面名称即可

const path=require("path")
// 导入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"
    },
    // 配置插件节点
    plugins:[
        // 创建html-webpack-plugin插件
        new htmlWebpackPlugin({ // 设置参数
            template:path.join(__dirname,"./src/index.html"), // 指定模板页面 以根据指定页面生成内存中的页面
            filename:"index.html" // 指定生成的内存中的页面的名称
        })
    ]
}

使用了html-webpack-plugin插件之后 就无需手动处理bundle.js的引用路径了
因为 在生成后的内存中的HTML页面里 已经自动引入了bundle.js的正确路径

总结 - 插件的作用:

1、自动根据指定的页面生成一个在内存中的页面

2、自动在页面中引入打包好的bundle.js

到此这篇关于浅析html webpack plugin插件的使用教程的文章就介绍到这了,更多相关html webpack plugin插件内容请搜索潘少俊衡以前的文章或继续浏览下面的相关文章,希望大家以后多多支持潘少俊衡!

版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。
本文地址:/web/HTML/70339.html

留言与评论(共有 0 条评论)
   
验证码:

潘少俊衡

| 桂ICP备2023010378号-4

Powered By EmpireCMS

爱享小站

中德益农

谷姐神农

环亚肥料

使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

感谢潘少俊衡友情技术支持