我在一个单独的服务器文件中运行Express的基本静态服务器。 在我的Gulpfile中,我使用nodemon运行服务器文件,然后将其地址传递给browsersync以代理通过。
当浏览器导航到网页时,我会看到一个无限加载页面,即“等待本地主机:3000"”。刷新页面后,网站会立即加载。
以下是我的快递服务器和gulpfile:
// server.js
import express from 'express';
const app = express();
app.use(express.static('build'));
app.listen(4000);
// gulpfile.babel.js
import browser from 'browser-sync';
import gulp from 'gulp';
import plugins from 'gulp-load-plugins';
const $ = plugins();
gulp.task('default',
gulp.series(server, browsersync, watch));
// Start the server with nodemon
function server(done) {
return $.nodemon({
script: 'server.js',
exec: 'babel-node',
})
.on('start', () => {
done();
});
}
// Proxy the server with browsersync
function browsersync(done) {
browser.init({
proxy: 'http://localhost:4000',
});
done();
}
// Watch for file changes
function watch() {
gulp.watch('scripts/**/*.js').on('change', gulp.series(browser.reload));
}
答案 0 :(得分:0)
遗憾的是,此问题是由"primary":true
引起的。