Skip to content

Instantly share code, notes, and snippets.

@li0nel
Created June 5, 2018 10:27
Show Gist options
  • Save li0nel/8093dd517cdc5a5ba26095ffff1381cb to your computer and use it in GitHub Desktop.
Save li0nel/8093dd517cdc5a5ba26095ffff1381cb to your computer and use it in GitHub Desktop.
const path = require('path')
exports.handler = (evt, ctx, cb) => {
const {request} = evt.Records[0].cf
if (!path.extname(request.uri)) {
request.uri = '/index.html'
}
cb(null, request)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment