Fixes output path for build command (#7026)

This commit is contained in:
Antonin CLAUZIER
2023-11-11 14:13:23 +04:00
committed by GitHub
parent eaa9ba99fa
commit f63eba952e

View File

@@ -58,7 +58,7 @@ export default {
The final step is to upload your Bun handler. You can technically write the handler directly in the console if you wish, but if you want a full development environment, use the Bun toolkit. There are several ways you can choose to build and manage your artifacts, but follow these steps for a simple approach:
1. Run `bun build <handler-entry>.[ts|js] --outfile /dist/handler.js`
1. Run `bun build <handler-entry>.[ts|js] --outfile ./dist/handler.js`
2. Zip the `/dist` folder
### Step 3: Create the Lambda function on AWS