requirejs-config.js 1.1 KB

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. var config = {
  6. map: {
  7. '*': {
  8. compareList: 'Magento_Catalog/js/list',
  9. relatedProducts: 'Magento_Catalog/js/related-products',
  10. upsellProducts: 'Magento_Catalog/js/upsell-products',
  11. productListToolbarForm: 'Magento_Catalog/js/product/list/toolbar',
  12. catalogGallery: 'Magento_Catalog/js/gallery',
  13. priceBox: 'Magento_Catalog/js/price-box',
  14. priceOptionDate: 'Magento_Catalog/js/price-option-date',
  15. priceOptionFile: 'Magento_Catalog/js/price-option-file',
  16. priceOptions: 'Magento_Catalog/js/price-options',
  17. priceUtils: 'Magento_Catalog/js/price-utils',
  18. catalogAddToCart: 'Magento_Catalog/js/catalog-add-to-cart'
  19. }
  20. },
  21. config: {
  22. mixins: {
  23. 'Magento_Theme/js/view/breadcrumbs': {
  24. 'Magento_Catalog/js/product/breadcrumbs': true
  25. }
  26. }
  27. }
  28. };