iDeal configuration
To use iDeal, add a new payment method in Adyen's dashboard and add ideal
to the availablePaymentMethods
array in nuxt.config.js
:
// nuxt.config.js
export default {
modules: [
['@vsf-enterprise/adyen-commercetools/nuxt', {
availablePaymentMethods: [
'scheme',
'ideal'
],
// ...
}]
]
};
Conditions to make iDeal work correctly:
- Customer must be from the Netherlands.
- Transaction currency must be Euro (EUR).
Passing optional configuration
You can pass iDeal optional configuration (opens new window) to the Adyen Drop-in in the following way:
// nuxt.config.js
export default {
modules: [
['@vsf-enterprise/adyen-commercetools/nuxt', {
availablePaymentMethods: [
'scheme',
'ideal'
],
methods: {
ideal: {
showImage: false
}
}
// ...
}]
]
};