Skip to content

Commit 9355c40

Browse files
author
Ives van Hoorne
committed
Fix static files
1 parent 4ce8eb6 commit 9355c40

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

Gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ gulp.task('homepage', function() {
88
return gulp.src('packages/homepage/public/**/*').pipe(gulp.dest('www'));
99
});
1010

11-
gulp.task('manifest', function() {
12-
return gulp.src('packages/app/public/manifest.json').pipe(gulp.dest('www'));
11+
gulp.task('statics', function() {
12+
return gulp.src('packages/app/public/**/*').pipe(gulp.dest('www'));
1313
});
1414

15-
gulp.task('default', ['app', 'homepage', 'manifest']);
15+
gulp.task('default', ['app', 'homepage', 'statics']);

packages/app/public/sitemap.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)