我正在运行Ghost博客,该博客只是以下列内容开头:
npm start
然后在http://lolcahost:2368
我有浏览器同步设置在我的gulpfile中运行,如下所示:
gulp.task('default', function() {
browserSync.init(null, {
server: {
proxy: 'http://localhost:2368'
}
});
});
虽然没有看到工作。它会在localhost:3000
上的浏览器中启动,但只会在完全空白的白页上显示消息:Cannot GET /
我在这里做错了什么?当我访问Ghost创建的localhost:2368
时,我可以看到网站正常。
答案 0 :(得分:2)
我的猜测是你的配置错误,
它应该是这样的:
gulp.task('default', function() {
browserSync.init({
proxy: 'http://localhost:2368'
});
});