我将bootstrap-sass-official
添加到我的bower依赖关系中bower_components
。
我以这种方式编译并添加了bootstrap css文件到public
(在gulpfile.js
中):
var paths = {
'bootstrap': 'bower_components/bootstrap-sass-official/assets/',
'jquery': 'bower_components/jquery/dist/'
};
elixir(function(mix) {
mix.sass('app.scss', null, {includePaths: [paths.bootstrap + 'stylesheets/']});
});
在app.scss
中有一行@import '_bootstrap';
。并编译css文件,它们可以正常工作。
如何向页面添加引导字体和脚本?
答案 0 :(得分:1)
我找到了一个解决方案:
mix.scripts(
'*',
'resources/assets/javascripts',
'public/js/app.js'
);
mix.scripts(
[
paths.jquery + 'jquery.js',
paths.bootstrap + 'javascripts/bootstrap.js'
],
'public/js/dependencies.js',
'bower_components'
);
mix.copy(paths.bootstrap + 'fonts/bootstrap/', "public/fonts/");
答案 1 :(得分:1)
我的解决方案,我为此感到非常自豪。
<强> /gulpfile.js 强>
var elixir = require('laravel-elixir');
// Set your Bower target directory below.
var bowerDir = './vendor/bower_components';
// Helper function.
function bower(pkg, path) {
return [bowerDir, pkg, path].join('/');
}
elixir(function (mix) {
// Styles
mix.sass('app.scss', null, {includePaths: [bowerDir]});
// Fonts
mix.copy(bower('bootstrap-sass', 'assets/fonts/**'), 'public/build/fonts');
// Scripts
mix.scripts([
bower('jquery', 'dist/jquery.min.js'),
bower('bootstrap-sass', 'assets/javascripts/bootstrap.min.js')
]);
// Versioning
mix.version([
'css/app.css',
'js/all.js'
]);
});
<强> /resources/assets/sass/app.scss 强>
@import "bootstrap-sass/assets/stylesheets/bootstrap";
body {
font: 100% Helvetica, sans-serif;
color: #333;
}
PhpStorm的额外提示
在PhpStorm中将bowerDir
设置为资源根。这样你就可以摆脱警告。
使用 Ctrl + Space 显示路径自动完成。