Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Meteor 时是否有一种通用的方法来启用 gzip 压缩,无论它是在本地、meteor.com 还是 heroku 上托管?如果我只想在我的 heroku 托管的 Meteor 应用程序上进行 gzip 压缩,那怎么能启用呢?
在本地运行 Meteor 时,似乎没有使用 Gzip 压缩。
当您执行meteor bundle命令时,生成的包包含一个服务器,该服务器默认使用“gzippo”连接中间件 [1] 执行 gzip 压缩。
meteor bundle
您可以通过解压缩 tarball 并编辑 server/server.js 来查看(和修改)服务器文件。
[1] http://tomg.co/gzippo