Magento secureRenderer not producing nonce
With this test code <?= /* noEscape */ $secureRenderer->renderTag(‘script’, [‘id’ => ‘testjs’], ‘var thisisatest=0;’, false ); ?> I’d expect Magento to output a script tag similar to <script id=”textjs” nonce=”random-nonce-characters”>var thisisatest=0;</script> But it’s not, instead outputting <script id=”testjs”>var thisisatest=0;</script> I’m… Read More »Magento secureRenderer not producing nonce