CorsOptions interface

Defines options to control Cross-Origin Resource Sharing (CORS) for an index.

Properties

allowedOrigins

The list of origins from which JavaScript code will be granted access to your index. Can contain a list of hosts of the form {protocol}://{fully-qualified-domain-name}[:{port#}], or a single * to allow all origins (not recommended).

maxAgeInSeconds

The duration for which browsers should cache CORS preflight responses. Defaults to 5 minutes.

Property Details

allowedOrigins

The list of origins from which JavaScript code will be granted access to your index. Can contain a list of hosts of the form {protocol}://{fully-qualified-domain-name}[:{port#}], or a single * to allow all origins (not recommended).

allowedOrigins: string[]

Property Value

string[]

maxAgeInSeconds

The duration for which browsers should cache CORS preflight responses. Defaults to 5 minutes.

maxAgeInSeconds?: number

Property Value

number