Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,所以我在 Yii2 中设置了一个高级应用程序,它一切正常,但现在我想安装我自己的引导程序,它有 48 列和20px.
20px
我目前看到的唯一方法是在 GitHub 或其他地方实际维护我自己的 repo。
作曲家控制我为实现这一目标所做的一切的最佳方式是什么?
目前我能看到的最好的方法是将其添加到您的配置中:
'assetManager' => [ 'bundles' => [ 'yii\bootstrap\BootstrapAsset' => [ 'sourcePath' => null, 'css' => ['css/bootstrap.css'] ], ], ],
我完全愿意接受更好的建议。