Skip to content

Commit

Permalink
Ran prettier and fixed quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
skeemer committed Oct 19, 2019
1 parent a9e34e4 commit 03cca9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export async function handleRequest(req) {
for (const kv of response.headers.entries()) {
headers.append(kv[0], kv[1]);
}
headers.set('Cache-Control', 'max-age=' + config.cacheTime);
headers.set("Cache-Control", "max-age=" + config.cacheTime);

return new Response(body, {
status: response.status,
Expand Down

0 comments on commit 03cca9f

Please sign in to comment.