@blinkk/root 2.5.8 → 2.5.10
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/dist/render.js +3 -0
- package/dist/render.js.map +1 -1
- package/package.json +1 -1
package/dist/render.js
CHANGED
|
@@ -13273,6 +13273,9 @@ var Renderer = class {
|
|
|
13273
13273
|
await nextRouteHandler();
|
|
13274
13274
|
return;
|
|
13275
13275
|
}
|
|
13276
|
+
if (!res.getHeader("cache-control")) {
|
|
13277
|
+
res.setHeader("cache-control", "private");
|
|
13278
|
+
}
|
|
13276
13279
|
next();
|
|
13277
13280
|
};
|
|
13278
13281
|
const render = async (props2, options2) => {
|