You've already forked serverless-webpack
mirror of
https://github.com/encounter/serverless-webpack.git
synced 2026-03-30 11:37:58 -07:00
19 lines
308 B
YAML
19 lines
308 B
YAML
service: serverless-webpack-typescript-example
|
|
|
|
# Add the serverless-webpack plugin
|
|
plugins:
|
|
- serverless-webpack
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs4.3
|
|
|
|
functions:
|
|
hello:
|
|
handler: handler.hello
|
|
events:
|
|
- http:
|
|
method: get
|
|
path: hello
|
|
integration: lambda
|