gulp + browser-sync Cannot GET / error

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

    I got this to work when the index.html file was inside the same folder:

        browserSync.init({
            server: {
                baseDir: "./"
            }
        });
    

提交回复
热议问题