123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- 'use strict';
- var svgo = require('imagemin-svgo');
- /**
- * Images optimization.
- */
- module.exports = {
- png: {
- options: {
- optimizationLevel: 7
- },
- files: [{
- expand: true,
- src: ['**/*.png'],
- ext: '.png'
- }]
- },
- jpg: {
- options: {
- progressive: true
- },
- files: [{
- expand: true,
- src: ['**/*.jpg'],
- ext: '.jpg'
- }]
- },
- gif: {
- files: [{
- expand: true,
- src: ['**/*.gif'],
- ext: '.gif'
- }]
- },
- svg: {
- options: {
- use: [svgo()]
- },
- files: [{
- expand: true,
- src: ['**/*.svg'],
- ext: '.svg'
- }]
- }
- };
|