Gruntfile 失败,并显示警告:未找到任务"default"


  1. 这是我的咕噜咕噜。
  2. 我运行$ 咕噜咕噜默认
  3. 实际上我想在某个端口上提高我的索引.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']);
    };
    

您需要加载任务:

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

相关内容

  • 没有找到相关文章

最新更新