Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的结构如下所示。我想将资产文件夹从 app 目录复制到 dist 目录?
app assets imgs css fonts index.html dist
将当前工作目录设置为app。选择assets的所有子目录和文件。将目的地设置为dest。
grunt.initConfig({ copy: { dist: { cwd: 'app', src: ['assets/**/*'], dest: 'dist/', expand: true } } }); grunt.loadNpmTasks('grunt-contrib-copy'); grunt.registerTask('default', ['copy:dist']);