Angular
To install Suppa in your Angular application:
- Open your src/index.htmlfile.
- Add the Suppa script to the <head>section:
<!DOCTYPE html>
<html lang="en">
  <head>
    // ... other meta tags
    <script
      src="https://app.suppa.ai/integration/script.js"
      data-api-key="YOUR_SUPPA_API_KEY"
    ></script>
  </head>
  <body>
    <app-root></app-root>
  </body>
</html>