Is there any content related to setting up a new d...
# help
c
Is there any content related to setting up a new domain from Route53 to my CloudFront app via SST?
f
Hey @Carlos Daniel, what do you mean by “my CloudFront app”?
The
StaticSite
construct deploys web apps to S3 + CloudFront. And you can configure a custom domain with domains in your Route53 account. It looks like this:
Copy code
new StaticSite(this, "Site", {
  path: "path/to/src",
  customDomain: "<http://domain.com|domain.com>",
});
Is this what you are looking for?
c
ahaaa, that’s it @Frank
thanks!