Created
June 30, 2020 17:08
-
-
Save SlootSantos/6c75180ac63dd1344b3695c3b0a23437 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.handler = async (event, context, callback) => { | |
const request = event.Records[0].cf.request; | |
request.uri = "/content" + request.uri; | |
return callback(null, request); | |
}; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment