博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Webpack入门教程二十七
阅读量:6788 次
发布时间:2019-06-26

本文共 760 字,大约阅读时间需要 2 分钟。

126.使用同一模板文件生成不同文件且标题不同,修改webpack.config.js文件,代码如下

var htmlWebpackPlugin = require("html-webpack-plugin");module.exports = {	entry:{		main:'./src/script/main.js',		a:'./src/script/a.js'	},	output:{		path:'./dist',		filename:'js/[name]-[hash].js',	},	plugins:[		new htmlWebpackPlugin({			template:'index.html',			filename:'a.html',			inject:false,			title:'this is a.html'		}),		new htmlWebpackPlugin({			template:'index.html',			filename:'b.html',			inject:false,			title:'this is b.html'		}),		new htmlWebpackPlugin({			template:'index.html',			filename:'c.html',			inject:false,			title:'this is c.html'		})	]}

127.修改模板文件index.html,代码如下

128.使用cnpm run webpack命令重新打包

129.查看生成的a.html,b.html,c.html文件

本文转自 素颜猪 51CTO博客,原文链接:http://blog.51cto.com/suyanzhu/1899587

转载地址:http://udpgo.baihongyu.com/

你可能感兴趣的文章
Ubuntu & GitLab CI & Docker & ASP.NET Core 2.0 自动化发布和部署(2)
查看>>
错误Name node is in safe mode的解决方法
查看>>
IntentService 与ResultReceiver
查看>>
通用函数之时间转换
查看>>
Apache Tomcat Server Options 选项说明
查看>>
oracle实用sql语句
查看>>
ubuntu下安装android sdk运行模拟器出现错误:
查看>>
RDO部署openstack(1)
查看>>
jQuery 2.0.3 源码分析 钩子机制 - 属性操作
查看>>
ESAPI = Enterprise Security API
查看>>
【翻译】Use a bitmap as a background image
查看>>
2016乌云白帽资料下载
查看>>
echarts在.Net中使用实例(二) 使用ajax动态加载数据
查看>>
[安卓] 1、页面跳转+按钮监听
查看>>
[CareerCup] 15.5 Denormalization 逆规范化
查看>>
重新理解:ASP.NET 异步编程
查看>>
PostgreSQL在何处处理 sql查询之五十二
查看>>
Java开发环境搭建全过程(上)
查看>>
[LeetCode] Spiral Matrix II 螺旋矩阵之二
查看>>
爱上MVC3系列~同步与异步提交,在过滤器里如何进行重定向
查看>>