ClerkConfigurationOptions

data class ClerkConfigurationOptions(val enableDebugMode: Boolean = false, val proxyUrl: String? = null, val telemetryEnabled: Boolean = true)

Data class for enabling extra functionality on the Clerk SDK.

Constructors

Link copied to clipboard
constructor(enableDebugMode: Boolean = false, proxyUrl: String? = null, telemetryEnabled: Boolean = true)

Properties

Link copied to clipboard

If true, enables verbose logging for SDK operations and API calls. Defaults to false.

Link copied to clipboard

Optional proxy URL for network requests Your Clerk app's proxy URL. Required for applications that run behind a reverse proxy. Must be a full URL (for example, https://proxy.example.com/__clerk).

Link copied to clipboard