/ svgo.config.js
svgo.config.js
 1  module.exports = {
 2    multipass: true,
 3    plugins: [
 4      {
 5        name: 'preset-default',
 6        params: {
 7          overrides: {
 8            // viewBox is required to resize SVGs with CSS.
 9            // @see https://github.com/svg/svgo/issues/1128
10            removeViewBox: false,
11          },
12        },
13      },
14    ],
15  };