是否可以使grunt的根服务为子文件夹。
而不是localhost:9000是根,我希望localhost:9000/wz27
成为根。
这是为了使页面的行为与在线发布时的行为一样。
答案 0 :(得分:1)
使用grunt-contrib-connect,您可以在其中定义选项 base ,这是
将从中提供文件的基本(或根目录)目录。默认 到项目Gruntfile的目录。
例如:
grunt.initConfig({
connect: {
server: {
options: {
base: 'wz27'
port: 9000
}
}
}
});