From dc6321649da5976b48ae2c57e37163156e5f2356 Mon Sep 17 00:00:00 2001 From: laiso Date: Sat, 24 Jul 2021 16:26:33 +0700 Subject: [PATCH] Update 2019-09-16-lambda-at-edge-support-added.md typo fix --- posts/2019-09-16-lambda-at-edge-support-added.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2019-09-16-lambda-at-edge-support-added.md b/posts/2019-09-16-lambda-at-edge-support-added.md index a1db3bc3d..e865f8529 100644 --- a/posts/2019-09-16-lambda-at-edge-support-added.md +++ b/posts/2019-09-16-lambda-at-edge-support-added.md @@ -103,7 +103,7 @@ exports.handler = (event, context, callback) => { const headers = request.headers; if (headers['cloudfront-is-mobile-viewer'] && headers['cloudfront-is-mobile-viewer'][0].value === 'true') { - request.uri = '/lite + request.uri; + request.uri = '/lite' + request.uri; } callback(null, request);