12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- /* @var $block \Magento\Customer\Block\CustomerScopeData */
- ?>
- <script type="text/x-magento-init">
- <?= /* @noEscape */ $block->encodeConfiguration([
- '*' => ['Magento_Customer/js/invalidation-processor' => [
- 'invalidationRules' => [
- 'website-rule' => [
- 'Magento_Customer/js/invalidation-rules/website-rule' => [
- 'scopeConfig' => [
- 'websiteId' => $block->getWebsiteId(),
- ]
- ]
- ]
- ]
- ]],
- ]);
- ?>
- </script>
|