// 静态服务器 + 监听 scss/html 文件gulp.task('server', ['sass'], function() {
browserSync.init({
server: "./"
});
});在gulp中这样配置服务器,成功启动后,会默认打开根目录下的index.html文件,如果我希望它打开另一个页面,比如test.html, 应该怎么写呢?我试过这样写:// 静态服务器 + 监听 scss/html 文件gulp.task('server', ['sass'], function() {
browserSync.init({
server: "./test.html"
});
});但是失败了:谢谢!!
添加回答
举报
0/150
提交
取消