Vite
To install Suppa in your Vite application:
- Open your 
index.htmlfile in the root of your Vite project. - Add the Suppa script to the 
<head>section: 
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <link rel="icon" type="image/svg+xml" href="/vite.svg" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Vite App</title>
    <script
      src="https://app.suppa.ai/integration/script.js"
      data-api-key="YOUR_SUPPA_API_KEY"
    ></script>
  </head>
  <body>
    <div id="app"></div>
    <script type="module" src="/src/main.js"></script>
  </body>
</html>