Gruntfile失败,警告:任务"默认"未找到

时间:2017-02-09 11:55:05

标签: gruntjs grunt-contrib-watch long-running-processes

  1. 这是我的gruntfile。
  2. 我运行$ grunt default
  3. 我希望在某个端口上启动index.html并希望它直接在chrom中打开

      module.exports = function(grunt) {
      grunt.initConfig({
     connect: {
        server: {
          options: {
            port: 9001,
            base: {
              path: 'Dev',
              options: {
                index: 'index.html',
                maxAge: 300000
              }
            }
          }
        }
      },
       open: {
        delayed: {
          path: 'http://localhost:9001'
          app: 'Google Chrome'
          options: {
            openOn: 'serverListening'
          }
        }
      }     
      });
    grunt.registerTask('default', ['connect', 'open']);
    };
    

1 个答案:

答案 0 :(得分:0)

您需要加载任务:

grunt.loadNpmTasks('grunt-contrib-connect');