web-dev-qa-db-ja.com

webpackはHtmlWebpackPluginを縮小します


HtmlWebpackPluginプラグインを使用してWebpackでhtmlファイルを縮小しようとしています。私はなんとかindex.htmlファイルをdistローダーに入れましたが、縮小するのに問題がありました。

dist/
node_modules/
src/
   ejs/
   js/
   css/
server.js
webpack.config.js
package.js

webpack.config.js:

var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');

module.exports = {

    entry: './src/js/index.js',

    devtool: 'source-map',

    output: {
        publicPath: '/dist/'
    },

    module: {
        rules: [
            {
                test: /\.ejs$/,
                use: ['ejs-loader']
            },
            {
                test: /\.css$/,
                use: ExtractTextPlugin.extract({
                    use: [{
                            loader: 'css-loader',
                            options: {
                                url: false,
                                minimize: true,
                                sourceMap: true
                            }
                        }]
                })
            }
        ]
    },

    plugins: [
        new HtmlWebpackPlugin({
            template: './src/ejs/index.ejs',
            minify: true
        }),
        new ExtractTextPlugin({
            filename: 'main_style.css'
        })
    ]
}
4
Renjus

直面している問題が正確に何であるかはわかりませんが、ブール値の代わりにminifyプロパティで明示的なパラメーターを渡してみることができます。たとえば、空白を削除するには、次のことを試してください。

試してみてください:

new HtmlWebpackPlugin({
    template: './src/ejs/index.ejs',
    filename: 'index.ejs',
    minify: {
        collapseWhitespace: true
    }
})

これは私のために働きます。

オプションの完全なリストについては、 ドキュメント を確認してください。

7