-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvgo.config.js
47 lines (42 loc) · 1.05 KB
/
svgo.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/** TESTING import SVG as component and when used in CSS
*
* FOR PRD, set:
* - indent: 0
* - pretty: false
* - removeDoctype: true
*/
module.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
{
name: 'preset-default',
params: {
overrides: {
// customize default plugin options
inlineStyles: {
onlyMatchedOnce: true,
},
// or disable plugins
removeDoctype: false,
removeTitle: true, // default: enabled
removeDesc: true, // default: enabled
},
},
},
// enable built-in plugins by name
//'prefixIds',
// or by expanded notation which allows to configure plugin
{
name: 'sortAttrs',
params: {
xmlnsOrder: 'alphabetical',
},
},
],
};