requirejs-config.js 754 B

12345678910111213141516171819
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. var config = {
  6. map: {
  7. '*': {
  8. checkoutBalance: 'Magento_Customer/js/checkout-balance',
  9. address: 'Magento_Customer/js/address',
  10. changeEmailPassword: 'Magento_Customer/js/change-email-password',
  11. passwordStrengthIndicator: 'Magento_Customer/js/password-strength-indicator',
  12. zxcvbn: 'Magento_Customer/js/zxcvbn',
  13. addressValidation: 'Magento_Customer/js/addressValidation',
  14. 'Magento_Customer/address': 'Magento_Customer/js/address',
  15. 'Magento_Customer/change-email-password': 'Magento_Customer/js/change-email-password'
  16. }
  17. }
  18. };