我是gruntjs的新手。我安装了咕噜声。也有应用程序。我使用grunt build
缩小了代码。它创建了/dist
目录,其中存在所有缩小版本的文件。
如何使用grunt为生产运行此分发代码(/dist
)。无法搞清楚。 grunt serve
命令默认采用/app
目录
答案 0 :(得分:1)
使用grunt-contrib-connect
(enter link description here)之类的套餐。首先安装它:
$ npm install --save-dev grunt-contrib-connect
在你的Gruntfile.js
中grunt.loadNpmTasks('grunt-contrib-connect');
// ...
// In your config object
grunt.initConfig({
// ...
connect: {
dist: {
options: {
port: 8000,
base: 'dist',
keepAlive: true
}
}
}
// ...
});
然后运行你的咕噜声任务:
$ grunt connect:dist
导航到http://localhost:8000(或更改配置中的端口)。
注意:如果您使用手表,请设置keepAlive: false
。