Reputation: 1506
I'm using the default gruntfile that is included when I scaffold out a new project.
copy: {
dist: {
files: [{
expand: true,
dot: false,
cwd: '<%= yeoman.app %>',
dest: '<%= yeoman.dist %>',
src: ['myfolder/css/**/*',
]
},
}
}
I'm wanting to keep the original file names when I run the build as I keep getting b914da89.somefile.css.
What file do I need to modify to do this?
Upvotes: 1
Views: 227
Reputation: 3654
Look in Gruntfile.js
to see where you are calling the rev
task: grunt-rev. Removing that call should stop the modification of your file names/
Upvotes: 1