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