我刚刚安装了浏览器同步,但是当我尝试启动服务器时出现此错误:
terkea@terkea-Lenovo-G50-80:~$ browser-sync start --server --files index.html[Browsersync] Access URLs:
Local: http://localhost:3000
External: http://192.168.1.3:3000
------------------------------------
UI: http://localhost:3001
UI External: http://192.168.1.3:3001
------------------------------------
[Browsersync]提供以下文件:./ [Browsersync]正在观看文件......
也许有人能找到错误并帮助我吗?
答案 0 :(得分:0)
您可能需要将参数传递给--server,它是您要从中提供文件的目录。默认情况下,浏览器同步使用您当前的工作目录。
例如,如果您在项目的根目录中启动浏览器同步,并且index.html位于文件夹a / b / c / index.html中,则browser-sync命令将是:
class Organization(models.Model):
name = models.CharField(max_length=30, unique=True)
description = models.CharField(max_length=100)
class Departments(models.Model):
name = models.CharField(max_length=30, unique=True)
description = models.CharField(max_length=100)
email= models.CharField(max_length=30, unique=True)
phone= models.CharField(max_length=30)
org_linked=models.ForeignKey(Organization)
user_linked=models.ForeignKey(User)
答案 1 :(得分:0)
您必须指定文件所在的文件夹。我使用ubuntu 18.04,它的工作原理。 例如,如果要打开目录/ home / user / code中的所有文件,则必须编写以下命令:
browser-sync start --server "/home/user/code/" --files "*.*"