最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
html webpack plugin插件的使用教程
时间:2022-06-25 17:57:31 编辑:袖梨 来源:一聚教程网
本篇文章小编给大家分享一下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
相关文章
- 《无限暖暖》天星之羽获得位置介绍 12-20
- 《流放之路2》重铸台解锁方法介绍 12-20
- 《无限暖暖》瞄准那个亮亮的成就怎么做 12-20
- 《无限暖暖》魔气怪终结者完成方法 12-20
- 《无限暖暖》曙光毛团获得位置介绍 12-20
- 《无限暖暖》日光果获得位置介绍 12-20