function initCCP()

in agent/src/agent/index.js [57:66]


function initCCP() {
  const agentChatWindow = document.getElementById('agent-chat-window');
  connect.core.initCCP(agentChatWindow, {
    ccpUrl: AGENT_CCP_URL,
    region: AWS_REGION
  });
  window.connect = connect;
  connect.agent(subscribeToAgentEvents);
  connect.contact(subscribeToContactEvents);
}