withWebConfig method

RudderConfigBuilder withWebConfig(
  1. WebConfig webConfig
)

Sets the web-specific configuration.

Provides configuration options specific to web platforms including cookie settings, integration loading, and queue options.

webConfig - The web configuration to use. Returns this RudderConfigBuilder instance for method chaining.

Implementation

RudderConfigBuilder withWebConfig(WebConfig webConfig) {
  __webConfig = webConfig;
  return this;
}