[js高手之路]深刻淺出webpack教程系列5-插件使用之html-webpack-plugin配置(中)

上文咱們講到了options的配置和獲取數據的方式,本文,咱們繼續深刻options的配置html

1、html-webpack-plugin插件中的options除了本身定義了一些基本配置外,咱們是能夠任意的添加自定義的數據jquery

webpack.dev.config.js文件:webpack

var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {git

entry : {
    main : './src/js/main.js',
    calc : './src/js/calc.js'
},
output : {
    //__dirname,就是當前webpack.config.js文件所在的絕對路徑
    path : __dirname + '/dist', //輸出路徑,要用絕對路徑
    filename : 'js/[name]-[hash].bundle.js' //打包以後輸出的文件名
},
plugins: [
    new HtmlWebpackPlugin({
        template : './index.html',
        title : 'ghostwu教你學webpack',
        inject : true,
        date : new Date(),
        userName : 'ghostwu',
        age : 22
    })
]

};github

咱們在webpack.dev.config.js中新增了3個自定義數據( date,userName, age),咱們在demo2目錄下面的index.html模板中能夠這樣讀取web

1 <h3><%= htmlWebpackPlugin.options.date %></h3>
2 <h3><%= htmlWebpackPlugin.options.userName %></h3>
3 <h3><%= htmlWebpackPlugin.options.age %></h3>npm

一樣設置好了以後,記得( npm run d )從新打包生成.ui

2、完整的把htmlWebpackPlugin這個實例在模板中遍歷出來spa

demo2下面的index.html文件:插件

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title><%= htmlWebpackPlugin.options.title %></title>
<body>
    <h3><%= htmlWebpackPlugin.options.date %></h3>
    <h3><%= htmlWebpackPlugin.options.userName %></h3>
    <h3><%= htmlWebpackPlugin.options.age %></h3>
    <ul>
        <% for ( var key in htmlWebpackPlugin ){ %>
            <% if ( key == 'files' ) { %>
                <h3>files</h3>
                <% for( var f in htmlWebpackPlugin[key] ){ %>
                    <li> <%= f %>, <%= htmlWebpackPlugin[key][f] %> </li>
                    <% if ( f == 'chunks') { %>
                        <p><%= JSON.stringify( htmlWebpackPlugin[key][f] ) %></p>
                    <% } %>
                <% } %>
            <% } else { %>
                <h3>options</h3>
                <% for( var f in htmlWebpackPlugin[key] ){ %>
                    <li> <%= f %>, <%= htmlWebpackPlugin[key][f] %> </li>
                <% } %>
            <% } %>
        <% } %>
    </ul>
</body>
</html>

clipboard.png

三,經過上面打印的數據,咱們能夠本身手動指定js文件的引入,不須要自動inject

webpack.dev.config.js文件

var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
    entry : {
        main : './src/js/main.js',
        calc : './src/js/calc.js'
    },
    output : {
        //__dirname,就是當前webpack.config.js文件所在的絕對路徑
        path : __dirname + '/dist', //輸出路徑,要用絕對路徑
        filename : 'js/[name]-[hash].bundle.js' //打包以後輸出的文件名
    },
    plugins: [
        new HtmlWebpackPlugin({
            template : './index.html',
            title : 'ghostwu教你學webpack',
            inject : false
        })
    ]
};

inject設置爲false, js不會自動注入到打包以後的文件dist/index.html,因此咱們就要自動指定加載的js文件.

demo2/index.html文件代碼:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title><%= htmlWebpackPlugin.options.title %></title>
    <script src="<%= htmlWebpackPlugin.files.chunks.main.entry %>"></script>
<body>
    <script src="<%= htmlWebpackPlugin.files.chunks.calc.entry %>"></script>
</body>
</html>

執行打包命令( npm run d ),在dist目錄下生成的index.html文件,源代碼就變成咱們手動注入的js文件了

clipboard.png

4、minify選項,壓縮html文件

他能夠配置不少的值,官方參考地址:https://github.com/kangax/htm...

var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
    entry : {
        main : './src/js/main.js',
        calc : './src/js/calc.js'
    },
    output : {
        //__dirname,就是當前webpack.config.js文件所在的絕對路徑
        path : __dirname + '/dist', //輸出路徑,要用絕對路徑
        filename : 'js/[name]-[hash].bundle.js', //打包以後輸出的文件名
    },
    plugins: [
        new HtmlWebpackPlugin({
            template : './index.html',
            title : 'ghostwu教你學webpack',
            inject : false,
            minify : {
                removeComments : true, //去掉註釋
                collapseWhitespace : true, //去掉空行
            }
        })
    ]
};

這裏,咱們配置了兩種經常使用的壓縮選項( 去掉註釋,去掉空行),那麼打包生成的index.html文件,就會變成壓縮版(好比你看到的jquery.min.js這樣的文件,都是通過壓縮處理的)

相關文章
相關標籤/搜索