我的安装似乎很好,因为默认的“应用程序”集合有效。
但是,我尝试创建一个新集合,但似乎无法正确构建:
在我的 global.php 中(在文档中,它说它必须位于 config/packages 等中的某个位置,但我猜这仅适用于 Laravel 3?)我输入以下内容:
Basset::collection('preview', function($collection)
{
$collection->stylesheet('stylesheets/bootstrap.min.css');
$collection->stylesheet('stylesheets/bootstrap-responsive.min.css');
$collection->javascript('javascripts/bootstrap.min.js');
});
所以我想,只需使用工匠创建一个构建“预览”:
php artisan basset:build preview
输出:
[preview] Stylesheets build was not required for collection.
[preview] Javascripts build was not required for collection.
当我查看我的文件夹“builds”时,我只看到应用程序集合,没有看到添加了工作表/脚本的新文件夹“preview”。使用 @stylesheets('preview') 在我的视图中加载它也不会做任何事情。
有什么建议可以让它工作吗?谢谢!