Nuxt.js
To install Suppa in your Nuxt.js application:
- Create or open the
nuxt.config.js
file in your project root. - 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
};