0

これは私のプロジェクトです

 - Project root

 |-  build
     |-css
     |-js
     |-index.html

 |-  src
     |- css
     |- js
     |-index.html

 |-gulpfile.js

gulp を使用し、build/scc および build/js ファイルを src/index.html に挿入して、build/index.html として配置したい

これを行いました:

gulp.task('index', function () {
  var target = gulp.src('src/index.html');
  var sources = gulp.src(['build/js/*.js', 'build/styles/*.css'], { ignorePath: 'build/', addRootSlash: false });
  return target.pipe(inject(sources))
    .pipe(gulp.dest('build'));
});

「/build/」部分をスキップする必要がありますが、まだhtmlファイルの出力には次のように表示されます:

<link rel="stylesheet" href="/build/styles/app.min.css">
<script src="/build/js/app.min.js"></script>
4

1 に答える 1