9

我正在尝试使用 Elixir 的 version() 方法,而我的“公共”文件夹是 public_html(而不是默认的“公共”方法)。

我对我的 css 文件进行版本控制,该文件生成一个构建文件夹,其中包含 public_html 中的清单

elixir.config.cssOutput = 'public_html/css';
elixir.config.jsOutput = 'public_html/js';

elixir(function(mix) {

    mix.styles([
        'vendor/normalize.css',
        'app.css'
    ], null, 'public_html/css');

    mix.version('public_html/css/all.css');

});

在我的刀片模板中,我使用

<link href="{{ elixir("css/all.css") }}" rel="stylesheet">

问题是 'public/build' 文件夹中的长生不老药功能搜索。如何更改它以便搜索 public_html 文件夹?

先感谢您

4

3 回答 3

11

您忘记覆盖文件中的 publicDir 文件夹gulpfile.js,这会将文件夹指向buildelixir 用来确定版本哈希的正确位置。

elixir.config.publicDir = 'public_html';

完成此操作后,您必须在 Laravel 中覆盖您的 public_path,Laravel 5 的推荐方法是转到index.php您的公共文件夹中:

$app = require_once __DIR__.'/../bootstrap/app.php';

添加

// set the public path to this directory
$app->bind('path.public', function() {
    return __DIR__;
});
于 2015-04-18T11:40:18.267 回答
5

你需要做的就是这个

var elixir = require('laravel-elixir');
elixir.config.publicDir = 'public_html';
elixir.config.publicPath = 'public_html';
于 2015-09-01T14:58:27.680 回答
1

elixir() 中没有用于更改公共路径的选项:

function elixir($file)
    {
        static $manifest = null;

        if (is_null($manifest))
        {
            $manifest = json_decode(file_get_contents(public_path().'/build/rev-manifest.json'), true);
        }

        if (isset($manifest[$file]))
        {
            return '/build/'.$manifest[$file];
        }

        throw new InvalidArgumentException("File {$file} not defined in asset manifest.");
    }

只有几个选项。您可以通过将其添加到 App\Providers\AppServiceProvider 来更改公共路径

public function register()
    {
        $this->app->bind('path.public', function() {
          return base_path().'/public_html';
        });
    }

或者您可以创建自己的 elixir 函数或辅助类

例子:

    function my_own_elixir($file,$path=public_path())
            {
                static $manifest = null;

                if (is_null($manifest))
                {
                    $manifest = json_decode(file_get_contents($path.'/build/rev-manifest.json'), true);
                }

                if (isset($manifest[$file]))
                {
                    return '/build/'.$manifest[$file];
                }

                throw new InvalidArgumentException("File {$file} not defined in asset manifest.");
            }

然后您可以稍后在视图中使用它:

{{my_own_elixir('/css/all.css',$path='path to public_html')}}

希望在未来版本的长生不老药中,这个未来将被包括在内。:)

于 2015-04-07T08:24:12.017 回答