9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
|
import serverless from 'serverless-http'
|
||
|
import { app } from './source/index.cjs'
|
||
|
|
||
|
const handler = serverless(app, {
|
||
|
provider: 'aws',
|
||
|
})
|
||
|
|
||
|
export { handler }
|