PayPal configuration

To use PayPal, add a new payment method in Adyen's dashboard and add paypal to the availablePaymentMethods array in nuxt.config.js:

// nuxt.config.js
export default {
  modules: [
    ['@vsf-enterprise/adyen-magento2/nuxt', {
      availablePaymentMethods: [
        'scheme',
        'paypal'
      ],
      methods: {
        paypal: {
          merchantId: '<PAYPAL_MERCHANT_ID>',
          intent: 'capture'
        }
      }
      // ...
    }]
  ]
};

Read Adyen's document about PayPal (opens new window) to check available configuration.