0
gulp-connectを使って、別のディレクトリのいくつかのファイルを処理できるかどうか疑問です。ような何か:任意の上記で'root'とは異なるディレクトリからいくつかの資産を提供するGulp接続
gulp.task('serve', function() {
connect.server({
root: 'root',
middleware: function() {
return [ function(req, res, next) {
if (!/^\/(js|css)\/.*/.test(req.url)) {
req.url = '/app' + req.url;
}
next();
}];
}
});
});
:
http://localhost:8080/index.html => root: '/root/app'
しかし
http://localhost:8008/js/main.js => from '/root/js/' not from 'root/app/js'
http://localhost:8008/css/main.css => from '/root/css/' not from 'root/app/css/'
をありがとう! – Daniele