码迷,mamicode.com
首页 > Web开发 > 详细

Webpack入门教程二十七

时间:2017-02-20 23:19:50      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:webpack入门教程二十七

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文件

技术分享

技术分享

技术分享

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

Webpack入门教程二十七

标签:webpack入门教程二十七

原文地址:http://suyanzhu.blog.51cto.com/8050189/1899587

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!