标签:
需求:前端切页面,每个页面公共头部尾部
1 module.exports=function(grunt){ 2 3 // Project configuration. 4 grunt.initConfig({ 5 pkg: grunt.file.readJSON(‘package.json‘), 6 concat: { 7 one:{ 8 src:[‘cixi/html/头部.html‘,‘cixi/html/1.html‘,‘cixi/html/尾部.html‘], 9 dest:‘cixi/html/测试.html‘ 10 } 11 }, 12 watch:{ 13 html:{ 14 files: [‘cixi/html/*.html‘], 15 tasks: [‘concat‘] 16 } 17 } 18 }); 19 // 加载包含 "uglify" 任务的插件。 20 grunt.loadNpmTasks(‘grunt-contrib-concat‘); 21 22 grunt.loadNpmTasks(‘grunt-contrib-watch‘); 23 24 // 默认被执行的任务列表。 25 grunt.registerTask(‘default‘, [‘concat‘,‘watch‘]); 26 27 };
标签:
原文地址:http://www.cnblogs.com/lmw425317/p/5315592.html