// Multiple accounts with random selection configureServer({ cookies: ['cookie1', 'cookie2', 'cookie3'], cookieRotation:'random', });
// With custom user agents and rotation configureServer({ cookies: ['...'], userAgents: ['MyBot/1.0', 'MyBot/2.0'], userAgentRotation:'round-robin', });
// Disable user agent injection configureServer({ cookies:'...', userAgents: [] });
Configures RoZod for server/Node.js environments. Sets default cookies and user-agents that will be automatically applied to all requests.
config The server configuration options.