Nuxt.js
To install Suppa in your Nuxt.js application:
- Create or open the 
nuxt.config.jsfile in your project root. - Add the Suppa script to the 
headsection of the configuration: 
export default {
  // ... other configurations
  head: {
    script: [
      {
        src: "https://app.suppa.ai/integration/script.js",
        "data-api-key": "YOUR_SUPPA_API_KEY",
      },
    ],
  },
  // ... other configurations
};