Gulp 文件未复制字体
Gulp File Not Copying Fonts
我正试图将我的一些字体移到我的 resources/assets/fonts/web-icons/ 目录中,这样当我在我的布局中使用它们时,它会显示正确的图标。有人可以帮助我理解当我 运行 我的 gulp 文件时它不会将网络图标复制到 public 文件夹,我试图将其显示为 public/fonts/web-icons.
var elixir = require('laravel-elixir');
elixir(function (mix) {
/**
* Copy needed files from Remark directories
* to /public directory.
*/
mix.copy('fonts/web-icons', 'public/fonts');
mix.styles([
'libs/bootstrap.css',
'libs/bootstrap-extend.css',
'libs/animsition.css',
'libs/asScrollable.css',
'libs/switchery.css',
'libs/slidePanel.css',
'libs/flag-icon.css',
'site.min.css'
]);
});
The copy method may be used to copy files and directories to new locations. All operations are relative to the project's root directory
如果您的字体存储在 resources
目录中,您应该将完整路径指定为第一个参数:
mix.copy('resources/assets/fonts/web-icons', 'public/fonts/web-icons');
我正试图将我的一些字体移到我的 resources/assets/fonts/web-icons/ 目录中,这样当我在我的布局中使用它们时,它会显示正确的图标。有人可以帮助我理解当我 运行 我的 gulp 文件时它不会将网络图标复制到 public 文件夹,我试图将其显示为 public/fonts/web-icons.
var elixir = require('laravel-elixir');
elixir(function (mix) {
/**
* Copy needed files from Remark directories
* to /public directory.
*/
mix.copy('fonts/web-icons', 'public/fonts');
mix.styles([
'libs/bootstrap.css',
'libs/bootstrap-extend.css',
'libs/animsition.css',
'libs/asScrollable.css',
'libs/switchery.css',
'libs/slidePanel.css',
'libs/flag-icon.css',
'site.min.css'
]);
});
The copy method may be used to copy files and directories to new locations. All operations are relative to the project's root directory
如果您的字体存储在 resources
目录中,您应该将完整路径指定为第一个参数:
mix.copy('resources/assets/fonts/web-icons', 'public/fonts/web-icons');