gulp + browser-sync Cannot GET / error

前端 未结 8 2505
悲哀的现实
悲哀的现实 2021-02-15 12:40

I am learning the front-end build system currently gulp, i want to use brower-sync and the problem is it is not throwing an error in the commad line but instead when it brings

8条回答
  •  无人及你
    2021-02-15 13:19

    gulp.task('browser-sync', function() {
        browserSync({
    
          server: {
                baseDir: "./"
                },
    
                port: 8080,
                open: true,
                notify: false
        });
    });
    

提交回复
热议问题