Skip to main content

Nuxt.js

To install Suppa in your Nuxt.js application:

  1. Create or open the nuxt.config.js file in your project root.
  2. Add the Suppa script to the head section 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
};