Skip to content
Snippets Groups Projects
Commit a4867165 authored by tamaina's avatar tamaina
Browse files

perf: renderBaseでCache-Controlを15秒から300秒に

parent cd1f2adc
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,13 @@
You should also include the user name that made the change.
-->
## 13.x.x (unreleased)
### Improvements
- Server: UIのHTML(ノートなどの特別なページを除く)のキャッシュ時間を15秒から300秒に
### Bugfixes
-
## 13.5.3 (2023/02/09)
......
......@@ -337,7 +337,7 @@ export class ClientServerService {
const renderBase = async (reply: FastifyReply) => {
const meta = await this.metaService.fetch();
reply.header('Cache-Control', 'public, max-age=15');
reply.header('Cache-Control', 'public, max-age=300');
return await reply.view('base', {
img: meta.bannerUrl,
title: meta.name ?? 'Misskey',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment