mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Fixed conflicting svg ids
no issue - enables `prefixIds` svgo option to guarantee all `id` attributes are unique across svgs - disabled `cleanupIds` option so that it doesn't interfere with id uniqueness - fixes instagram icon background not showing
This commit is contained in:
parent
4bc9f91392
commit
d1bb99a805
1 changed files with 2 additions and 0 deletions
|
@ -200,6 +200,8 @@ module.exports = function (defaults) {
|
||||||
],
|
],
|
||||||
optimizer: {
|
optimizer: {
|
||||||
plugins: [
|
plugins: [
|
||||||
|
{prefixIds: true},
|
||||||
|
{cleanupIds: false},
|
||||||
{removeDimensions: true},
|
{removeDimensions: true},
|
||||||
{removeTitle: true},
|
{removeTitle: true},
|
||||||
{removeXMLNS: true},
|
{removeXMLNS: true},
|
||||||
|
|
Loading…
Add table
Reference in a new issue