首页 > Web开发 > 详细

Webpack入门教程二十二

时间:2017-02-20 23:29:12      阅读:183      评论:0      收藏:0      [点我收藏+]

108.在htmlWebpackPlugin中使用date,修改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:‘index-[hash].html‘,
			inject:‘head‘,
			date:new Date()
		})
	]
}

109.安装html-webpack-plugin插件

cnpm install html-webpack-plugin --save-dev

技术分享

110.修改模板文件index.html

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<title>webpack demo</title>
	<link rel="stylesheet" href="">
</head>
<body>
	<%= htmlWebpackPlugin.options.date %>
</body>
</html>

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

技术分享

112.查看生成的文件

技术分享

本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1899515

Webpack入门教程二十二

原文:http://suyanzhu.blog.51cto.com/8050189/1899515

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!