From 0728dfcfbd79341e6d5b4164a5015d4f39d73f7e Mon Sep 17 00:00:00 2001 From: Owen Buckley Date: Mon, 1 Sep 2025 16:26:04 -0400 Subject: [PATCH] update AWS SST serverless docs for latest conventions --- src/pages/guides/hosting/aws.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/pages/guides/hosting/aws.md b/src/pages/guides/hosting/aws.md index a9abaeca..7ac5d1f6 100644 --- a/src/pages/guides/hosting/aws.md +++ b/src/pages/guides/hosting/aws.md @@ -134,10 +134,7 @@ Let's look at the below example: // 2) Setup hosting for static content const frontend = new sst.aws.StaticSite("MyStaticSite", { - path: "./", - build: { - output: "public" - }, + path: "public", }) // 3) Configure a CloudFront distribution with behaviors for SSR pages, API routes, and static content @@ -176,9 +173,9 @@ Let's look at the below example: -Although the above example is hardcoded, you'll want to use the build output manifest from Greenwood by following the [complete example repo we have](https://github.com/ProjectEvergreen/greenwood-demo-adapter-aws) for deploying a full-stack Greenwood application. +Although the above example is hardcoded, you'll want to use Greenwood's build output manifest to dynamically generate all your serverless configuration. We have a [complete example repo](https://github.com/ProjectEvergreen/greenwood-demo-adapter-aws) for deploying a full-stack Greenwood applications with AWS and SST you can use as a starting point. -> We also have an [**Architect**](https://arc.codes/) example [for reference](https://github.com/ProjectEvergreen/greenwood-demo-adapter-aws/tree/feature/arc-adapter) as well. +> We also have an [**Architect**](https://arc.codes/) example [you can reference](https://github.com/ProjectEvergreen/greenwood-demo-adapter-aws/tree/feature/arc-adapter) as well. ## GitHub Actions