接上
grunt.initConfig({
copy: { // 這是一個task,不可以改名字,我們之前安裝過了"npm install grunt-contrib-copy --save-dev"
custom-target-name: { // 這是一個自定義目標名字
src:'<%= config.app %>/index.html',
dest:'<%= config.dist %>/index.html', //其中src和dest是固定寫法,不能改名稱
}
},
});