diff --git a/packages/bun-lambda/README.md b/packages/bun-lambda/README.md index 87d4fbb534..2eda7644e6 100644 --- a/packages/bun-lambda/README.md +++ b/packages/bun-lambda/README.md @@ -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 .[ts|js] --outfile /dist/handler.js` +1. Run `bun build .[ts|js] --outfile ./dist/handler.js` 2. Zip the `/dist` folder ### Step 3: Create the Lambda function on AWS