这是cmd:
的屏幕截图
我写了
browser-sync start --server --files "app\index.html"
答案 0 :(得分:0)
查看截图,您的项目目录似乎位于Desktop文件夹中,结构如下:
confusion
│
└───app
│
└───index.html
在这种情况下,您可以尝试指示Browsersync从app
目录启动服务器。如果您cd
到名为confusion
的文件夹,请运行:
browser-sync start --server "app" --files "app/index.html"
请注意在"app"
标记后添加--server
。