gulpを実行するときはgulpとLaravelブレードを使用しましたが、
私は物が欲しいですか?
Perfix URL ビルドに {{ asset('/') }} を追加したい
head-include.blade.php gulp 実行前
<!-- build:css resources/assets/css/out.css -->
<link rel="stylesheet" href="resources/assets/css/1.css">
<link rel="stylesheet" href="resources/assets/css/2.css">
<!-- endbuild -->
gulpfiles.js
...
gulp.task('useref', function(){
return gulp.src(paths.assets.html)
.pipe(useref())
.pipe(gulpIf('*.js', uglify()))
.pipe(gulpIf('*.css', cssnano()))
.pipe(gulp.dest(paths.dev.html))
});
...
head-include.blade.php gulp 実行後
<link rel="stylesheet" href="resources/assets/css/out.css">
しかし、私はそれが欲しい:
{{ asset('/') }} を perfix url ビルドに追加したい
head-include.blade.php欲しい..
<link rel="stylesheet" href="{{ asset('/') }} resources/assets/css/out.css">