webpack配置(第四步:html篇(進階篇))

關於webpack的項目文件:https://gitee.com/codeFarmerPen/webpackjavascript

若是須要看(基礎篇)請移步:http://www.javashuo.com/article/p-ykguohhe-do.htmlcss

webpack.config.js文件

const path = require('path');
let htmlwebpackplugin = require('html-webpack-plugin');//引入html-webpack-plugin插件 

let export_html= {
    entry:  {
    	main:__dirname+"/app/js/main.js",//入口文件
    	main1:__dirname+"/app/js/main1.js",//入口文件
    },
    output: {
        path: __dirname+"/_build/",
        filename: "js/[name].js",//產出文件,name根據entry的入口文件鍵名定
    },
    module: {
        loaders: [
			{
			    test: /(\.jsx|\.js)$/,
			    loader: 'babel-loader',
			    query: {
			      presets: ['es2015']
			    }
			},
        ]
    }
    ,
 	plugins: [
 		//new一個模板出來,這一個不使用chunks
  		new htmlwebpackplugin({
	        template: './app/home.html',//入口文件
	        filename:  'home1.html',//產出文件
		}),
 		//new一個模板出來
  		new htmlwebpackplugin({
	        template: './app/home.html',//入口文件
	        filename:  'home2.html',//產出文件
	        chunks  : ['main'],//能夠設置chunks按需引入JS文件,不設置就會引入全部產出的js
	        chunksSortMode: 'manual',//將chunks按引入的順序排序,不用這個的話,引入到html的JS多是錯亂排序的
		})
 	]
    
};
module.exports=export_html;

看plugins這裏html

//new一個模板出來,這一個不使用chunks        
        new htmlwebpackplugin({
	        template: './app/home.html',
	        filename:  'home1.html',// 會生成home1.html
		}),
 		//new一個模板出來
  		new htmlwebpackplugin({
	        template: './app/home.html',
	        filename:  'home2.html',//會生成home2.html
	        chunks  : ['main'],//注意:chunks裏面的值是對應entry入口的鍵名來的
	        chunksSortMode: 'manual',
		})

app目錄下的home.html文件java

_build目錄下的home1.html文件webpack

_build目錄下的home2.html文件git

能夠看到,home1.html引入了兩個js文件,並且main1.js排在main.js前面,web

而home2.html,只引入了指定的main.js;數組

在home2.html的chunks加上:main1緩存

//new一個模板出來
  		new htmlwebpackplugin({
	        template: './app/home.html',//入口文件
	        filename:  'home2.html',//產出文件
	        chunks  : ['main',"main1"],//能夠設置chunks按需引入JS文件,不設置就會引入全部產出的js
	        chunksSortMode: 'manual',//將chunks按引入的順序排序,不用這個的話,引入到html的JS多是錯亂排序的
		})

由於chunks裏,main在main1以前,因此引入的文件也是按照這個順序來的;babel

順序的問題主要歸功於:這一條屬性

chunksSortMode: 'manual',//將chunks按引入的順序排序,不用這個的話,引入到html的JS多是錯亂排序的

更進一步:

每次都這樣new很麻煩,故而寫個函數簡化過程

let get_html = function(name,chunk){//封裝
    return {
        template: './app/ejs for html/'+ name + '.ejs',
        filename:  name+ '.html',
        chunks  : ['main',chunk||name],//能夠設置chunks按需引入JS文件,不設置就會引入全部產出的js
        chunksSortMode: 'manual',//將chunks按引入的順序排序
        inject  : true,
        hash    : true,
		xhtml	: true
    }
};

而後在plugin裏面new一個測試一下;

此時,webpack.config.js:

const path = require('path');
let htmlwebpackplugin = require('html-webpack-plugin');//引入html-webpack-plugin插件 
let get_html = function(name,chunk){//封裝
    return {
        template: './app/'+ name + '.html',
        filename:  name+ '.html',
        chunks  : ['main',chunk||null],//這裏引入公共文件main.js,另一個文件按需引入,固然也能夠把這個的值設爲數組,傳入function的第二個值用數組就行
        chunksSortMode: 'manual',//將chunks按引入的順序排序
        inject  : true,//全部JavaScript資源插入到body元素的底部
        hash    : true,//避免緩存
		xhtml	: true //規範html書寫
    }
};

let export_html= {
    entry:  {
    	main:__dirname+"/app/js/main.js",//入口文件
    	main1:__dirname+"/app/js/main1.js",//入口文件
    },
    output: {
        path: __dirname+"/_build/",
        filename: "js/[name].js",//產出文件,name根據entry的入口文件鍵名定
    },
    module: {
        loaders: [
			{
			    test: /(\.jsx|\.js)$/,
			    loader: 'babel-loader',
			    query: {
			      presets: ['es2015']
			    }
			},
        ]
    }
    ,
 	plugins: [
 		//new一個模板出來測試一下
  		new htmlwebpackplugin(get_html("home","main1"))
 	]
    
};
module.exports=export_html;

結果:

成功!

下面是我關於webpack配置的全部連接

webpack配置(第一步:配置前提):http://www.javashuo.com/article/p-zhierewo-eo.html

webpack配置(第二步:入門篇):http://www.javashuo.com/article/p-zgertkmc-mq.html

webpack配置(第三步:ES6篇):http://www.javashuo.com/article/p-yornwkpw-dt.html

webpack配置(第四步:html篇(基礎篇)):http://www.javashuo.com/article/p-ykguohhe-do.html

webpack配置(第四步:html篇(進階篇)):http://www.javashuo.com/article/p-nqgmvdah-hz.html

webpack配置(第四步:html篇(模板篇)):http://www.javashuo.com/article/p-cfrvmuzd-ea.html

webpack配置(第五步:less/css篇(基礎篇)):http://www.javashuo.com/article/p-ftegbnmw-p.html

webpack配置(第五步:less/css篇(進階篇)):http://www.javashuo.com/article/p-bkdzfetz-mx.html

webpack配置(第五步:less/css篇(url圖片篇)):http://www.javashuo.com/article/p-adtmrppc-mq.html

相關文章
相關標籤/搜索