gulp + browser-sync Cannot GET / error

前端 未结 8 2508
悲哀的现实
悲哀的现实 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:04

    gulp.task('server', function()
    {
            browserSync.init(["public/src/css/","public/src/js"],{ 
                server: "./",
                startPath: "./index.html", // After it browser running
                //    browser: 'chrome',
                host: 'localhost',
                //       port: 4000,
                open: true,
                tunnel: true    }); 
    });
    
    gulp.task('default', ['scripts', 'styles', 'html', 'server', 'watch']);
    

提交回复
热议问题