在 Laravel Elixr gulpfile 中导入字体

Importing fonts in a Laravel Elixr gulpfile

我在 Elixr 和 Gulpfiles (https://laracasts.com/series/laravel-5-fundamentals/episodes/19). so far I am able to compile the web designer's CSS into a minified version. However, his fonts don't appear to render correctly. I did some research on this and found this (https://www.npmjs.com/package/laravel-elixir-fonts) 页面上观看了关于 Laracasts 的教程,并且能够安装字体管理器。但是,我对通过 gulp 文件混合 kmy 字体感到困惑。我尝试从该页面复制并粘贴 mix.fonts 语法,但在我的命令行中 运行 宁 gulp 时 运行 到 SyntaxError: Unexpected token ] 中。我是 Laravel elixr 的新手,非常困惑。我能够弄清楚如何使用 Elixr 导入我的 CSS,但字体是另一个问题。感谢任何帮助。

我正在尝试将 tff 文件导入到我的 CSS 中,我已经知道 Laravel 不使用 Facades/special 语法就无法播放资产。我真的很困惑,就像我说的,我是 Laravel Elixr 的新手。我昨天真的看了 Laracasts 视频,了解了基础知识。我想将 tff 字体文件导入到我的 gulp 文件中,如有任何帮助,我们将不胜感激。

gulpfile.js

    /*
 |--------------------------------------------------------------------------
 | Elixir Asset Management
 |--------------------------------------------------------------------------
 |
 | Elixir provides a clean, fluent API for defining some basic Gulp tasks
 | for your Laravel application. By default, we are compiling the Sass
 | file for our application, as well as publishing vendor resources.
 |
 */var elixir = require('laravel-elixir');

require('laravel-elixir-fonts');

elixir(function(mix) {
    mix.sass('stylesheet.scss');

});

为此我不使用外部库,只使用这个

elixir(function(mix) {
    mix.copy(
        '../../bower_components/font-awesome/fonts',
        'public/build/fonts'
    );
});