Custom font in Component (ionic 2)

Must be something like this:

gulp.task('copy', function() {
  return gulp.src('path_to_my_font')
    .pipe(gulp.dest('www/build/fonts'))
});

And you could add this task to the build task

[‘sass’, ‘html’, ‘fonts’, ‘scripts’, ‘copy’]