javascript - webpack html-webpack-plugin minify:true
阿神
阿神 2017-04-11 11:07:43
[JavaScript讨论组]

自动生成html插件

html-webpack-plugin

new HtmlWebpackPlugin({
      title: 'React Title !',
      template: './template.html',
      minify:true,
      inject: 'body'
    }),

添加了 minify:true 参数后就会报错

ERROR in   TypeError: Cannot use 'in' operator to search for 'html5' in true

更多配置

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

module.exports = {
  devtool: 'eval',
  entry: [
    'webpack-dev-server/client?http://localhost:3000',
    'webpack/hot/only-dev-server',
    './app/App.js'
  ],
  output: {
    pathinfo: true,
    path: path.resolve(__dirname, 'public'),
    filename: 'bundle.js',
    publicPath: '/'
  },
  plugins: [
    new HtmlWebpackPlugin({
      title: 'React Title !',
      template: './template.html',
      minify:true,
      inject: 'body'
    }),
    new webpack.HotModuleReplacementPlugin(),
    new webpack.optimize.UglifyJsPlugin({
      compress: {
        warnings: false
      }
    })
  ],
  module: {
    loaders: [
      {
        test: /\.js$/,
        exclude: /(node_modules|bower_components)/,
        loaders: ['react-hot', 'babel']
      },
      {
        test: /\.styl$/,
        exclude: /(node_modules|bower_components)/,
        loader: 'style!css?sourceMap&modules&importLoaders=1&localIdentName=[name]__[local]__[hash:base64:5]!postcss!stylus-loader'
      },
      {
        test: /.scss$/,
        exclude: /node_modules/,
        loaders: ["style", "css", "sass?config=otherSassLoaderConfig"]
      },
      {
        test: /\.(png|jpg|gif|svg)$/,
        exclude: /(node_modules|bower_components)/,
        loader: 'url-loader?name=images/[name].[ext]&limit=8192'
      }
    ]
  },
  resolve: {
    root: path.join(__dirname, '..', 'app'),
    extensions: ['', '.js', '.jsx', '.json', '.css', '.styl', '.png', '.jpg', '.jpeg', '.gif', '.svg']
  },
  stylus: function () {
    return [rupture]
  },
  postcss: function () {
    return [autoprefixer];
  }
};
阿神
阿神

闭关修行中......

全部回复(1)
迷茫

据说是现在htmlminify没有默认值了,需要你自己指定:

new HtmlWebpackPlugin({
      title: 'React Title !',
      template: './template.html',
      minify: { removeAttributeQuotes: true },
      inject: 'body'
    }),

这么来试试

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号