@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.
- package/package.json +1 -1
- package/server/routes.js +7 -1
package/package.json
CHANGED
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 = [
|
|
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);
|