set Cache-Control response headers

This commit is contained in:
Matthias Kretschmann 2024-02-05 23:00:14 +00:00
parent d6dc37f4f8
commit 9eb4f1cd2a
Signed by: m
GPG Key ID: 606EEEF3C479A91F
1 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import { getLastCheckin } from '../lib/foursquare'
// import { getLastCheckin } from '../lib/foursquare'
import { NomadListLocation, getNomadList } from '../lib/nomadlist'
export const config = {
@ -14,7 +14,7 @@ declare type LocationResponse = {
next: Location
}
export async function GET(request: Request) {
export async function GET() {
try {
const nomadlist = await getNomadList()
// const foursquare = await getLastCheckin()
@ -26,7 +26,11 @@ export async function GET(request: Request) {
} as LocationResponse
return new Response(JSON.stringify(response, null, 2), {
headers: { 'content-type': 'application/json' }
status: 200,
headers: {
'Content-Type': 'application/json',
'Cache-Control': 's-maxage=300, stale-while-revalidate=300'
}
})
} catch (error) {
return new Response(JSON.stringify(error, null, 2), { status: 500 })