使用gzip压缩用的WebPack和表达,还是服务bundle.js代替bundle.js.gz(u

2019-11-04 18:55发布

我刚刚安装和设置gzip压缩到我的WebPack和快递文件。 该插件片断我webpack.config.js现在看起来是这样的:

plugins: [
    new webpack.DefinePlugin({ // <-- key to reducing React's size
      'process.env': {
        'NODE_ENV': JSON.stringify('production')
      }
    }),
    new webpack.optimize.UglifyJsPlugin(), //minify everything
    new webpack.optimize.AggressiveMergingPlugin(),//Merge chunks
    new CompressionPlugin({
      asset: "[path].gz[query]",
      algorithm: "gzip",
      test: /\.js$|\.css$|\.html$/,
      threshold: 10240,
      minRatio: 0.8
    }),
    HTMLWebpackPluginConfig,
    new Dotenv({
      path: './.env', // Path to .env file (this is the default)
      systemvars: true //
    })]
};

从我server.js文件中的一个片段,现在看起来是这样的:

// Use our router configuration when we call /
if (process.env.NODE_ENV === 'production') {
  app.use(express.static('dist'), router);
  app.get('/*', (req, res) => {
    res.sendFile(path.resolve(__dirname, 'dist', 'index.html'));
  });
  app.get('/*.js', (req, res) => {
    req.url = req.url + '.gz';
    res.set('Content-Encoding', 'gzip');
  });
} else {
  app.use('/', router);
}

当我的应用程序部署到生产环境,我可以看到,实际上已经建立了两个文件,则index_bundle.js这里的index_bundle.js.gz的代码:

remote:        index_bundle.js    1.49 MB       0  [emitted]  [big]  main
remote:        index_bundle.js.gz     375 kB          [emitted]  [big]
remote:        index.html    3.88 kB          [emitted]

压缩是成功的,但是,当我使用它仍然是服务于index_bundle.js文件通过网络,而不是新的压缩文件中的铬控制台测试我的网站:

对潜在为什么这个任何想法是怎么回事?

文章来源: using gzip compression with webpack and express, still serving bundle.js instead of bundle.js.gz