Devin
02/04/2022, 7:40 PMs3Deployment
step that I can’t really figure out how to integrate into that static site construct.
const site = new sst.StaticSite(this, "site", {
path: "website",
errorPage: "404.html",
buildOutput: "public",
buildCommand: "npm run build",
customDomain: getCustomDomain(scope.stage),
s3Bucket: {
// in here I can set publicReactAccess and removal along with moving the index doc here
}
s3Deployment: // does not exist, I'd expect it to but maybe I just need to call cdk directly to host a static site?
})
Frank
Devin
02/05/2022, 12:58 PM