Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 

24 wiersze
293 B

module.exports = {
js2svg: {
eol: 'lf',
finalNewline: true,
},
plugins: [
{
name: 'removeAttrs',
params: {
attrs: 'fill',
},
},
{
name: 'addAttributesToSVGElement',
params: {
attributes: [
{
fill: 'currentColor',
},
],
},
},
],
};