我已经gzip压缩了webpack包,当我尝试提供它时,我在客户端遇到ERR_CONTENT_DECODING_FAILED
错误。
这是我的中间件:
`app.get('*.js', function (req, res, next) {
req.url = req.url + '.gz';
res.set('Content-Encoding', 'gzip');
res.set('Content-Type', 'text/javascript');
next();
});`
有没有人知道发生了什么?我尝试使用.header()
或.setHeader()
方法,但也没有得到任何预期的结果。
提前谢谢。
这是压缩插件:
new CompressionPlugin({
asset: "[path].gz[query]",
algorithm: "gzip",
test: /\.js$/,
threshold: 10240,
minRatio: 0.8
})
答案 0 :(得分:1)
我只是通过放置这个midleware声明解决了这个问题:
app.get('*.js', function (req, res, next) {
req.url = req.url + '.gz';
res.set('Content-Encoding', 'gzip');
res.set('Content-Type', 'text/javascript');
console.log('sent')
next();
});
在app.use('/static', Express.static('dist'));
之前。 (之前反之亦然)