-
Notifications
You must be signed in to change notification settings - Fork 6
/
lambda.js
32 lines (29 loc) · 1.03 KB
/
lambda.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
'use strict'
const awsServerlessExpress = require('aws-serverless-express')
const app = require('./app')
// NOTE: If you get ERR_CONTENT_DECODING_FAILED in your browser, this is likely
// due to a compressed response (e.g. gzip) which has not been handled correctly
// by aws-serverless-express and/or API Gateway. Add the necessary MIME types to
// binaryMimeTypes below, then redeploy (`npm run package-deploy`)
// const binaryMimeTypes = [
// 'application/javascript',
// 'application/json',
// 'application/octet-stream',
// 'application/xml',
// 'font/eot',
// 'font/opentype',
// 'font/otf',
// 'image/jpeg',
// 'image/png',
// 'image/svg+xml',
// 'text/comma-separated-values',
// 'text/css',
// 'text/html',
// 'text/javascript',
// 'text/plain',
// 'text/text',
// 'text/xml'
// ]
// const server = awsServerlessExpress.createServer(app, null, binaryMimeTypes)
const server = awsServerlessExpress.createServer(app, null)
exports.handler = (event, context) => awsServerlessExpress.proxy(server, event, context)