test: cache debug

This commit is contained in:
DIYgod 2023-07-14 12:07:28 +01:00
parent eb6af22e60
commit cdb92eedf9
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@ export class NextServerResponse {
const nextData = JSON.stringify(data)
this.#headers.set("Content-Type", "application/json")
this.#headers.set("X-Time", new Date().toISOString())
return new Response(nextData, this.makeResponseOptions())
}