gpt4 book ai didi

javascript - Grunt 在端口 8000 上运行,我不知道为什么

转载 作者:行者123 更新时间:2023-11-30 12:53:43 24 4
gpt4 key购买 nike

这是我的 Gruntfile.js

module.exports = function(grunt) {

require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);

grunt.initConfig({
dirs: {
js: ['app/js/**/*.js', '!app/js/libs/**/*.js'],
jshint: ['Gruntfile.js','app/js/**/*.js','!app/js/libs/**/*.js'],
html: ['app/index.html'],
css: ['app/styles/**/*.css'],
less: ['app/styles/**/*.less'],
tests: ['test/**/*.js']
},
hbs: {
templateExtension : 'hbs'
},
connect:{
development: {
port: 9000,
base: 'app',
keepalive: true,
livereload: true
}
}
});

grunt.registerTask('server', ['less', 'connect', 'watch', 'open:dev']);
};

当我启动服务器时,它在端口 8000 上运行。根据我的理解,我在 connect:developement:port 属性中指定了端口。什么会使它在端口 8000 上运行? enter image description here

最佳答案

尝试将连接后缀更改为开发:

grunt.registerTask('server', ['less', 'connect:development', 'watch', 'open:dev']);

您可能还需要指定选项:

connect: {
development: {
options: {
port: 9000,
base: 'app',
keepalive: true,
livereload: true
}
}
}

关于javascript - Grunt 在端口 8000 上运行,我不知道为什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20007148/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com