Yii2 Bootstrap 3
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

899 B

Bootstrap の .less ファイルを直接に使う

あなたが Bootstrap CSS をあなたの less ファイルに直接含める ことを望む場合は、オリジナルの CSS ファイルがロードされないように無効化する必要があります。 yii\bootstrap\BootstrapAssetcss プロパティを空に設定することによって、そうすることが出来ます。 そのためには、assetManager アプリケーションコンポーネント を以下のように構成します。

    'assetManager' => [
        'bundles' => [
            'yii\bootstrap\BootstrapAsset' => [
                'css' => [],
            ]
        ]
    ]