咕噜声重载错误

时间:2015-12-23 08:19:09

标签: gruntjs livereload grunt-express

抱歉,我是新来的咕噜咕噜,并试图构建一个系统,我可以用sass重新加载。 Sass一切都很容易设置和编译,但我遇到了生活重载,我遵循了本教程

https://www.youtube.com/watch?v=SL6uYHsl2Ic

当我运行命令时,grunt服务器收到错误说 路径必须是字符串。这是我的基本构建系统。谢谢!

module.exports = function(grunt) {
grunt.initConfig({
  sass: {                              // Task
    dist: {                            // Target
      options: {                       // Target options
        style: 'expanded'
      },
      files: {                         // Dictionary of files
        'css/main.css': 'sass/main.scss'       // 'destination': 'source'
      }
    }
  },
  watch: {
    options: {livereload:true},
    css: {
      files: ['sass/**/*.scss'],
      tasks: ['sass'],
    },
  },
  express:{
    all:{
        options:{
            port:9000,
            hostname:'localhost',
            base:'.',
            livereload:true,
        }
    }
  } 
});
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-express-server');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ['sass'])
grunt.registerTask('server', ['express', 'watch']);

};

0 个答案:

没有答案