Чи є спосіб використання ifconfig
в Magento 2 умовно додати активи CSS, подібні до Magento 1? Ось приклад з Magento 1:
<action ifconfig="config_path/group/field" method="addItem">
<type>skin_css</type><name>css/styles.css</name>
</action>
Я спробував щось подібне в Magento 2, але це не працює:
<head>
<css src="css/styles.css"
ifconfig="config_path/group/field" />
</head>
Він просто відображає ifconfig
атрибут на фронті:
<link rel="stylesheet" type="text/css"
ifconfig="config_path/group/field"
href="http://example.com/pub/static/frontend/Magento/luma/en_US/css/styles.css" />
Чи є еквівалент у Magento 2?