requirejs-config.js 566 B

12345678910111213141516171819202122
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. var config = {
  6. map: {
  7. '*': {
  8. orderReview: 'Magento_Paypal/js/order-review',
  9. 'Magento_Paypal/order-review': 'Magento_Paypal/js/order-review',
  10. paypalCheckout: 'Magento_Paypal/js/paypal-checkout'
  11. }
  12. },
  13. paths: {
  14. paypalInContextExpressCheckout: 'https://www.paypalobjects.com/api/checkout'
  15. },
  16. shim: {
  17. paypalInContextExpressCheckout: {
  18. exports: 'paypal'
  19. }
  20. }
  21. };