如何让livereload.js在localhost上工作,错误 - > ERR_CONNECTION_REFUSED

时间:2015-07-01 15:11:58

标签: gruntjs livereload

我试图通过grunt watch自动刷新页面以及何时在index.html上执行此操作:

<script src="//localhost:35729/livereload.js"></script>

我收到错误http://localhost:35729/livereload.js net::ERR_CONNECTION_REFUSED

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

尝试一下:

请勿使用:

<script src="//localhost:35729/livereload.js"></script>

使用此:

 <script src="http://localhost:35729/livereload.js"></script>

我希望它会起作用