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 a1db3bc3..e865f852 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);