Skip to content

Commit

Permalink
manage/Gruntfile.js: Add yeoman.dist/images to assetDirs
Browse files Browse the repository at this point in the history
Without this, images are renamed, but the references to them in the CSS
aren't updated correctly, which prevents the SUSE logo in the footer
displaying.  For further discussion, see
yeoman/yeoman#824 (comment)

It's curious that this fix doesn't seem to be necessary for
dashboard/Gruntfile.js (are the files there not being renamed by rev?)

Signed-off-by: Tim Serong <tserong@suse.com>
  • Loading branch information
tserong committed Jan 20, 2015
1 parent e530fdf commit 71b1cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage/Gruntfile.js
Expand Up @@ -255,7 +255,7 @@ module.exports = function (grunt) {
html: ['<%= yeoman.dist %>/{,*/}*.html'],
css: ['<%= yeoman.dist %>/styles/{,*/}*.css'],
options: {
assetsDirs: ['<%= yeoman.dist %>']
assetsDirs: ['<%= yeoman.dist %>', '<%= yeoman.dist %>/images' ]
}
},

Expand Down

0 comments on commit 71b1cd7

Please sign in to comment.