Skip to content

Commit e54c431

Browse files
committed
fix images/fonts being copied to wrong folder on build
1 parent a36e8a1 commit e54c431

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/templates/Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -364,14 +364,14 @@ module.exports = function (grunt) {
364364
'*.{ico,png,txt}',
365365
'.htaccess',
366366
'bower_components/**/*',
367-
'components/images/{,*/}*.{webp}',
368-
'components/fonts/**/*',
367+
'assets/images/{,*/}*.{webp}',
368+
'assets/fonts/**/*',
369369
'index.html'
370370
]
371371
}, {
372372
expand: true,
373373
cwd: '.tmp/images',
374-
dest: '<%%= yeoman.dist %>/public/components/images',
374+
dest: '<%%= yeoman.dist %>/public/assets/images',
375375
src: ['generated/*']
376376
}, {
377377
expand: true,

0 commit comments

Comments
 (0)