mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-26 11:57:34 -07:00
production環境の時だけimageminするように
This commit is contained in:
parent
96e5054c83
commit
7073e6f1ae
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ gulp.task('copy:client', [
|
||||||
'./src/web/resources/**/*',
|
'./src/web/resources/**/*',
|
||||||
'./src/web/app/*/resources/**/*'
|
'./src/web/app/*/resources/**/*'
|
||||||
])
|
])
|
||||||
.pipe(imagemin())
|
.pipe(isProduction ? imagemin() : gutil.noop())
|
||||||
.pipe(rename(path => {
|
.pipe(rename(path => {
|
||||||
path.dirname = path.dirname.replace('resources', '.');
|
path.dirname = path.dirname.replace('resources', '.');
|
||||||
}))
|
}))
|
||||||
|
|
Loading…
Reference in a new issue