Hello guys. I need to deploy a ReactStaticSite wit...
# sst
a
Hello guys. I need to deploy a ReactStaticSite with a
customDomain
property, but just to use Certificate and Alias… I don’t have a “domainName” per se in route 53. But this value is required, can be bypassed?
Copy code
customDomain: {
        domainName: null,
        alternateNames: [
          '<http://mysite.io|mysite.io>',
        ],
        certificate,
      }
Is there a way to define this null?
g
The domainName would be
<http://mysite.io|mysite.io>
a
But I don’t want to generate any route 53 record.
Due my record is not in AWS.
g
you would set isExternalDomain to true then
a
Awesome, thank you for pointing me to that.
This is great.
It works! 😄
Thanks @Garret Harp.