You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// (Optional) File patterns to watch for changes, or `true`
107
112
// to use the same value as the src property
108
113
watch:true,
114
+
// (Optional) Output a SVG file fit for inlining in a HTML page; defaults to false
115
+
inline:true,
116
+
// (Optional) Prefix symbol id attributes; no prefix by default
117
+
prefix:'shape-'
109
118
}
110
119
```
111
120
112
-
### More than one build per task?
121
+
### Several builds per task
113
122
114
-
Each task can accept several config objects, to output several result files. You need to provide a full config object for each `dest` file.
123
+
Each task can accept several config objects, using the `builds` property. You can provide an array of complete config objects in the `builds` property, or let it inherit from the task’s config:
0 commit comments