I am using gulp-open with gulp in windows 7:
gulp.task('op', function(){
var options = {
uri: 'localhost:8080',
app: 'chrome'
};
gulp.src(__filename)
.pipe(open(options));
});
The index.html file opens with the app when I use app:'Firefox' but when I use the chrome option it opens an empty index.html? How can I fix this?
I am using gulp-open with gulp in windows 7:
gulp.task('op', function(){
var options = {
uri: 'localhost:8080',
app: 'chrome'
};
gulp.src(__filename)
.pipe(open(options));
});
The index.html file opens with the app when I use app:'Firefox' but when I use the chrome option it opens an empty index.html? How can I fix this?
Share edited Feb 1, 2016 at 23:08 bier hier asked Jan 29, 2016 at 5:38 bier hierbier hier 22.6k44 gold badges104 silver badges174 bronze badges 03 Answers
Reset to default 10Depending on the OS you need to refer to the chrome app differently in options:
'google-chrome' // Linux
'chrome' // Windows
'google chrome' or 'Google Chrome' // OSX
Refer to section Options.app in the NPM documentation about gulp-open.
I only added http:// to the uri and it worked for me.
gulp.task('op', function(){
var options = {
uri: 'http://localhost:8080',
app: 'chrome'
};
gulp.src(__filename)
.pipe(open(options));
});
This is a snippet of my code that solves the issue for me, you can use it to modify yours accordingly:
var gulp = require('gulp');
var liveServer = require('gulp-live-server');
var browserSync = require('browser-sync');
gulp.task('live-server', function(done){
var server = new liveServer('server/main.js');
server.start();
done();
})
gulp.task('serve', gulp.series('live-server', function(done){
browserSync.init(null,{
proxy:"http://localhost:7777",
port:9001,
open: true
})
done();
}));
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743667127a4487160.html
评论列表(0条)