Klarna configuration
To use Klarna, add a new payment method in Adyen's dashboard and add specific payment methods to the availablePaymentMethods
array in nuxt.config.js
:
// nuxt.config.js
export default {
modules: [
['@vsf-enterprise/adyen-magento2/nuxt', {
availablePaymentMethods: [
'scheme',
'paypal',
'klarna',
'klarna_account',
'klarna_paynow'
],
// ...
}]
]
};
Read Adyen's document about Klarna (opens new window) to see supported payment methods for individual countries.