We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5b8e9a commit 22ef7d7Copy full SHA for 22ef7d7
ReactInjectPlugin.php
@@ -79,6 +79,13 @@ protected function renderAssetHtml(\Magento\Framework\View\Asset\PropertyGroup $
79
$removeCSSjunk = true;
80
}
81
82
+ if (isset($_GET['js-junk']) && $_GET['js-junk'] === "false") {
83
+ $removeAdobeJSJunk = false;
84
+ }
85
+ if (isset($_GET['js-junk']) && $_GET['js-junk'] === "true") {
86
+ $removeAdobeJSJunk = true;
87
88
+
89
$area = $this->state->getAreaCode();
90
$pageFilter = ['checkout', 'customer'];
91
0 commit comments