ifconfig
Magento 1のように、Magento 2で条件付きでCSSアセットを追加する方法はありますか?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に相当するものはありますか?