@quintype/framework 7.4.1 → 7.4.2-ttl.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server/routes.js +7 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quintype/framework",
3
- "version": "7.4.1",
3
+ "version": "7.4.2-ttl.0",
4
4
  "description": "Libraries to help build Quintype Node.js apps",
5
5
  "main": "index.js",
6
6
  "engines": {
package/server/routes.js CHANGED
@@ -87,7 +87,13 @@ exports.upstreamQuintypeRoutes = function upstreamQuintypeRoutes(
87
87
  });
88
88
 
89
89
  // Mention the routes which don't want to override the s-maxage value
90
- const excludeRoutes = ["/qlitics.js", "/api/v1/breaking-news"];
90
+ const excludeRoutes = [
91
+ "/qlitics.js",
92
+ "/api/v1/breaking-news",
93
+ "/stories.rss",
94
+ "/collection.rss",
95
+ "/api/v1/advanced-search",
96
+ ];
91
97
 
92
98
  app.all("/api/*", sketchesProxy);
93
99
  app.all("/login", sketchesProxy);