ifconfig
Magento 2에서 Magento 1과 유사한 CSS 자산을 조건부로 추가 하는 데 사용할 수있는 방법이 있습니까? 다음은 마 젠토 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에 해당하는 것이 있습니까?