We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<symbol>
I'm trying to optimize the logo available here: https://nicolas-hoizey.photo/ui/logo.svg
"Inline styles" is active by default, so it should be pretty safe, but it removes the <symbol> elements and their contents:
I don't know if it's a bug in SVGO or SVGOMG. I couldn't find a relevant issue or PR in SVGO's repository.
The text was updated successfully, but these errors were encountered:
It looks like it's an issue in SVGO directly. I tried with SVGO CLI, and it also removes the <symbol>s.
It doesn't with this configuration removing the inlineStyles plugin:
inlineStyles
module.exports = { plugins: [ { name: 'preset-default', params: { overrides: { inlineStyles: false, }, }, }, ], };
I'll open an issue on SVGO and link it here.
Should I keep this one open?
Sorry, something went wrong.
symbol
No branches or pull requests
I'm trying to optimize the logo available here: https://nicolas-hoizey.photo/ui/logo.svg
"Inline styles" is active by default, so it should be pretty safe, but it removes the
<symbol>
elements and their contents:I don't know if it's a bug in SVGO or SVGOMG. I couldn't find a relevant issue or PR in SVGO's repository.
The text was updated successfully, but these errors were encountered: