We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7ecede commit 0b035d9Copy full SHA for 0b035d9
app/code/Magento/RequireJs/Block/Html/Head/Config.php
@@ -74,7 +74,11 @@ protected function _prepareLayout()
74
/** @var \Magento\Framework\View\Asset\File $bundleAsset */
75
if (!empty($bundleAssets) && $staticAsset !== false) {
76
foreach ($bundleAssets as $bundleAsset) {
77
- $assetCollection->insert($bundleAsset->getFilePath(), $bundleAsset, RequireJsConfig::REQUIRE_JS_FILE_NAME);
+ $assetCollection->insert(
78
+ $bundleAsset->getFilePath(),
79
+ $bundleAsset,
80
+ RequireJsConfig::REQUIRE_JS_FILE_NAME
81
+ );
82
}
83
$assetCollection->insert($staticAsset->getFilePath(), $staticAsset, RequireJsConfig::CONFIG_FILE_NAME);
84
0 commit comments