使用Grunt手表直播当地网址

时间:2016-07-13 11:31:35

标签: gruntjs livereload

我正在开发一个没有后端/服务器的小型HTML / JS / SASS项目,我正试图让Livereloading工作。

在我的grunt.initConfig中,我有:

options: {
  livereload: true,
},

但是在Chrome中,我无法在本地html文件上激活Liverload插件。

  

文件:/// C:/Users/alucardu/Documents/Visual%20Studio%202015/Projects/JS-demo/JS-demo/index.html

这可能或我需要运行服务器吗?

1 个答案:

答案 0 :(得分:0)

显然Grunt有一些名为connect>的东西。 https://github.com/gruntjs/grunt-contrib-connect

当我安装它时,我将其添加到我的gruntFile:

    connect: {
        server: {
            options: {
                open: true,
                keepalive: true,
                hostname: 'localhost',
                port: 8080,
                base: ''
            }
        }
    },

现在我可以运行本地静态服务器了:)