Skip to content

Commit 7bee235

Browse files
authored
chore: make cache control on landing page less aggressive (#119)
1 parent 30fede4 commit 7bee235

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/+page.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { PageServerLoad } from './$types';
22

33
export const load: PageServerLoad = ({ setHeaders }) => {
4-
setHeaders({ 'Cache-Control': 'public, max-age=86400' });
4+
setHeaders({ 'Cache-Control': 'public, max-age=1800' });
55

66
return {
77
meta: {

0 commit comments

Comments
 (0)