gpt4 book ai didi

javascript - 压缩 gzip 不起作用(expressjs - 压缩库)

转载 作者:行者123 更新时间:2023-11-29 21:14:01 25 4
gpt4 key购买 nike

我使用来自 compression library仍然没有工作..这是我的配置:

const app = express();

app.use(compression());

app.use("/public", express.static(path.join(path.resolve(__dirname, '../../public'))));

enter image description here

最佳答案

根据 this link默认情况下,此模块不会压缩包含已压缩 Assets (如 JPEG 图像)的响应。如果愿意,您可以使用过滤器选项来覆盖此行为。

app.use(compression({
filter: function () { return true; }
}));

关于javascript - 压缩 gzip 不起作用(expressjs - 压缩库),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40307032/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com