We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd8e06a commit 48a8772Copy full SHA for 48a8772
bin/svgs.js
@@ -80,7 +80,7 @@ let SPRITE = new svgstore();
80
*/
81
const store = async mod => {
82
try {
83
- SPRITE.add(`${mod.prefix}${mod.name}`, mod.optimized.data);
+ SPRITE.add(mod.name, mod.optimized.data);
84
85
return SPRITE;
86
} catch (err) {
config/svgs.js
@@ -17,6 +17,7 @@ const svgo = {
17
name: 'preset-default',
18
params: {
19
overrides: {
20
+ removeViewBox: false,
21
convertPathData: false,
22
inlineStyles: false,
23
cleanupIDs: false
0 commit comments