Modifying Allowed Origins
This article provides an overview of modifying cors
Configuring CORS
Go to Projects: Access the "Projects" section within the platform.
Select the Tenant: Choose the tenant you wish to configure.
Access CORS Settings: Navigate to the CORS settings in the tenant's "Domains" section.
Allowed Origins: Specify up to 10 origins allowed to make cross-origin requests.
Configuration Examples:
Subdomain Wildcard:
https://*.example.com
Environments:
Production:
https://myapp.com
Local Development:
http://localhost:4200
Using *
as a wildcard is not recommended in production environments for security reasons.
Last updated