Webpack入门教程二十九

133.在模板中以内联的形式引用script脚本,修改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‘,
		publicPath:‘http://cdn.com/‘
	},
	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‘
		})
	]
}

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

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<title><%= htmlWebpackPlugin.options.title %></title>
	<link rel="stylesheet" href="">
	<script type="text/javascript">
			<%= compilation.assets[htmlWebpackPlugin.files.chunks.main.entry.substr(html
			WebpackPlugin.files.publicPath.length)].source() %>
	</script>
</head>
<body>
</body>
</html>

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

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

时间: 2024-10-14 10:00:32

Webpack入门教程二十九的相关文章

Webpack入门教程二十

102.webpack.config.js文件中entry的三种使用方式一对象形式,修改webpack.config.js文件,内容如下 module.exports = { entry:{ main:'./src/script/main.js', a:'./src/script/a.js' }, output:{ path:'./dist/js', filename:'[name].js' } } 103.使用cnpm run webpack命令重新打包 104.查看dist/js目录生成的文

Webpack入门教程二十四

116.输出HtmlWebpackPlugin.files中的内容,修改模板文件index.html,代码如下 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>webpack demo</ti

Webpack入门教程二十五

119.输出HtmlWebpackPlugin.options中的内容,修改模板文件index.html,代码如下 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>webpack demo</

Webpack入门教程二十三

113.使用for循环输出HtmlWebpackPlugin中的内容,修改模板文件index.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>webpack demo</title&

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', }

Bootstrap入门(二十九)JS插件6:弹出框

加入小覆盖的内容,像在iPad上,用于存放非主要信息 弹出框是依赖于工具提示插件的,那它也和工具提示是一样的,是需要初始化才能够使用的 首先我们引入CSS文件和JS文件 <link href="bootstrap.min.css" rel="stylesheet"> <script src="jquery-3.1.0.min.js" type="text/javascript"></script&

I学霸官方免费教程二十九:Java查找算法之二分法查找

二分法查找算法 基本步骤:    第一步:获取数组中间的下标    第二步:中间下标处的值和目标值比较,如果目标值大,说明要找的值在数组的后边一半中    第三步:再次获取数组右边一半的中间下标    第四步:再次用获得的中间下标和目标值进行比较    后续步骤以此类推,这样每次查找都在"半份"数据中进行,所以又叫折半查找.这也是为什么使用二分法查找之前必须要对数组进行排序的原因.如果不排序,将无法判断目标值在哪"半份"中 实例: package algorithm

WPF入门教程系列十九——ListView示例(一)

经过前面的学习,今天我做一个比较综合的WPF程序示例,主要包括以下功能: 1) 查询功能.从数据库(本地数据库(local)/Test中的S_City表中读取城市信息数据,然后展示到WPF的Window上的一个ListView上. 2) 数据联动功能.当鼠标左键选中ListView中的某一条记录时,在ListView框下面文本框中显示详细信息. 3) 修改功能.修改TextBox中的内容后,点击“更新”按钮,把修改后的数据保存到数据库中,同时与Listview联动. 第一步.建立一个WPF项目

【OpenCV入门教程之十二】OpenCV边缘检测:Canny算子,Sobel算子,Laplace算子,Scharr滤波器合辑

本系列文章由@浅墨_毛星云 出品,转载请注明出处. 文章链接:http://blog.csdn.net/poem_qianmo/article/details/25560901 作者:毛星云(浅墨)    微博:http://weibo.com/u/1723155442 知乎:http://www.zhihu.com/people/mao-xing-yun 邮箱: [email protected] 写作当前博文时配套使用的OpenCV版本: 2.4.9 本篇文章中,我们将一起学习OpenCV中