You've already forked serverless-webpack
mirror of
https://github.com/encounter/serverless-webpack.git
synced 2026-03-30 11:37:58 -07:00
26 lines
440 B
YAML
26 lines
440 B
YAML
service: babel-dynamically-entries-example
|
|
|
|
# Add the serverless-webpack plugin
|
|
plugins:
|
|
- serverless-webpack
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs6.10
|
|
|
|
functions:
|
|
first:
|
|
handler: first.hello
|
|
events:
|
|
- http:
|
|
method: get
|
|
path: first
|
|
integration: lambda
|
|
second:
|
|
handler: second.hello
|
|
events:
|
|
- http:
|
|
method: get
|
|
path: second
|
|
integration: lambda
|