Webpack入门教程十七

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Webpack入门教程十七相关的知识,希望对你有一定的参考价值。

88.在htmlWebpackPlugin中使用excludeChunks项,修改webpack.config.js文件,修改内容如下

var webpack = require(‘webpack‘);
var HtmlWebpackPlugin = require(‘html-webpack-plugin‘);

module.exports = {
	entry:{
		‘Greeter‘:__dirname + "/app/Greeter.js",
		‘a‘:__dirname + "/app/a.js",
		‘b‘:__dirname + "/app/b.js",
		‘c‘:__dirname + "/app/c.js"
	},
	output: {
		path: __dirname + "/build",
		filename: "[name]-[chunkhash].js"
	},
	devServer:{
		contentBase:"./public",
		historyApiFallback:true,
		inline:true
	},
	module:{
		loaders:[
			{
				test:/\.json$/,
				loader:"json-loader"
			},
			{
				test:/\.js$/,
				exclude:/node_modules/,
				loader:‘babel-loader‘
			},
			{
				test:/\.css$/,
				loader:‘style-loader!css-loader?modules‘
			}
		]
	},
	plugins:[
		new webpack.BannerPlugin("copyright suyan"),
		new HtmlWebpackPlugin({
			template:__dirname + "/app/index.tmpl.html",
			title:‘htmlwebpackplugin filename test‘,
			filename:‘filename.html‘,
			inject:‘body‘,
			excludeChunks:[‘a‘]
			// chunks:[‘a‘,‘c‘]
		})
	]
}

89.使用webpack命令进行重新打包

技术分享

90.查看生成的filename.html文件生成的内容

技术分享

说明

当我们在webpack.config.js文件配置了excludeChunks:[‘a‘]后,生成的文件中是不包含a-xxxx.js的引用的,而其他的js文
件将是被引用在生成文件中


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

以上是关于Webpack入门教程十七的主要内容,如果未能解决你的问题,请参考以下文章

Webpack入门教程十六

Webpack入门教程十一

Webpack入门教程十五

Webpack入门教程十

webpack打包和gulp打包工具详细教程

webpack入门