Skip to content

Commit bc343ea

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

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/templates/gulpfile.babel(gulp).js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,8 @@ gulp.task('build:images', () => {
528528
gulp.task('copy:extras', () => {
529529
return gulp.src([
530530
`${clientPath}/favicon.ico`,
531-
`${clientPath}/robots.txt`
531+
`${clientPath}/robots.txt`,
532+
`${clientPath}/.htaccess`
532533
], { dot: true })
533534
.pipe(gulp.dest(`${paths.dist}/${clientPath}`));
534535
});

0 commit comments

Comments
 (0)