Skip to content

Commit 3602406

Browse files
committed
fix(gulp): make sure .htaccess is copied on build
1 parent 0171112 commit 3602406

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: app/templates/gulpfile.babel(gulp).js

+2-1
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,8 @@ gulp.task('build:images', () => {
536536
gulp.task('copy:extras', () => {
537537
return gulp.src([
538538
`${clientPath}/favicon.ico`,
539-
`${clientPath}/robots.txt`
539+
`${clientPath}/robots.txt`,
540+
`${clientPath}/.htaccess`
540541
], { dot: true })
541542
.pipe(gulp.dest(`${paths.dist}/${clientPath}`));
542543
});

0 commit comments

Comments
 (0)