| 123456789101112131415161718192021222324 | // svgo.config.jsmodule.exports = {  multipass: true, // boolean. false by default  datauri: 'enc', // 'base64' (default), 'enc' or 'unenc'.  js2svg: {    indent: 2, // string with spaces or number of spaces. 4 by default    pretty: true, // boolean, false by default  },  plugins: [    // set of built-in plugins enabled by default    'preset-default',    // enable built-in plugins by name    'prefixIds',    // or by expanded notation which allows to configure plugin    {      name: 'sortAttrs',      params: {        xmlnsOrder: 'alphabetical',      },    },  ],}
 |