Complete the code to add a custom domain to your Supabase project.
supabase.project.addDomain('[1]')
You need to provide your custom domain name as a string to add it to your Supabase project.
Complete the code to verify your custom domain ownership in Supabase.
await supabase.project.verifyDomain('[1]')
Verification requires the exact custom domain name you added to your project.
Fix the error in the code to correctly configure SSL for your custom domain.
supabase.project.configureSSL({ ssl: [1] })The method expects a boolean value 'true' to enable SSL on the custom domain.
Fill both blanks to create a DNS TXT record for domain verification.
dnsRecords.create({ type: '[1]', value: '[2]' })Verification requires a TXT record with the Supabase verification token.
Fill all three blanks to update the custom domain settings with SSL and redirect enabled.
supabase.project.updateDomain('[1]', { ssl: [2], redirectToHttps: [3] })
You must specify the domain name, enable SSL with 'true', and enable HTTPS redirect with 'true'.