summaryrefslogtreecommitdiff
path: root/gulpfile.ts
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.ts')
-rw-r--r--gulpfile.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/gulpfile.ts b/gulpfile.ts
index 85305cd0e4..6ed597731f 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -47,7 +47,11 @@ gulp.task('build:copy:views', () =>
gulp.src('./src/server/web/views/**/*').pipe(gulp.dest('./built/server/web/views'))
);
-gulp.task('build:copy', gulp.parallel('build:copy:views', () =>
+gulp.task('build:copy:fonts', () =>
+ gulp.src('./node_modules/three/examples/fonts/**/*').pipe(gulp.dest('./built/client/assets/fonts/'))
+);
+
+gulp.task('build:copy', gulp.parallel('build:copy:views', 'build:copy:fonts', () =>
gulp.src([
'./src/const.json',
'./src/server/web/views/**/*',