1234567891011121314151617181920212223242526272829 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- var config = {
- map: {
- '*': {
- compareList: 'Magento_Catalog/js/list',
- relatedProducts: 'Magento_Catalog/js/related-products',
- upsellProducts: 'Magento_Catalog/js/upsell-products',
- productListToolbarForm: 'Magento_Catalog/js/product/list/toolbar',
- catalogGallery: 'Magento_Catalog/js/gallery',
- priceBox: 'Magento_Catalog/js/price-box',
- priceOptionDate: 'Magento_Catalog/js/price-option-date',
- priceOptionFile: 'Magento_Catalog/js/price-option-file',
- priceOptions: 'Magento_Catalog/js/price-options',
- priceUtils: 'Magento_Catalog/js/price-utils',
- catalogAddToCart: 'Magento_Catalog/js/catalog-add-to-cart'
- }
- },
- config: {
- mixins: {
- 'Magento_Theme/js/view/breadcrumbs': {
- 'Magento_Catalog/js/product/breadcrumbs': true
- }
- }
- }
- };
|