requirejs-config.js 996 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * Mageplaza
  3. *
  4. * NOTICE OF LICENSE
  5. *
  6. * This source file is subject to the Mageplaza.com license that is
  7. * available through the world-wide-web at this URL:
  8. * https://www.mageplaza.com/LICENSE.txt
  9. *
  10. * DISCLAIMER
  11. *
  12. * Do not edit or add to this file if you wish to upgrade this extension to newer
  13. * version in the future.
  14. *
  15. * @category Mageplaza
  16. * @package Mageplaza_Core
  17. * @copyright Copyright (c) 2016 Mageplaza (http://www.mageplaza.com/)
  18. * @license https://www.mageplaza.com/LICENSE.txt
  19. */
  20. var config = {
  21. paths: {
  22. 'mageplaza/core/jquery/popup': 'Mageplaza_Core/js/jquery.magnific-popup.min',
  23. 'mageplaza/core/owl.carousel': 'Mageplaza_Core/js/owl.carousel.min',
  24. 'mageplaza/core/bootstrap': 'Mageplaza_Core/js/bootstrap.min'
  25. },
  26. shim: {
  27. "mageplaza/core/jquery/popup": ["jquery"],
  28. "mageplaza/core/owl.carousel": ["jquery"],
  29. "mageplaza/core/bootstrap": ["jquery"]
  30. }
  31. };