From bb84f6283879215296c354e791ecbf1c74a6743e Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Wed, 28 Aug 2019 11:33:32 +0100 Subject: [PATCH] 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 --- ember-cli-build.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ember-cli-build.js b/ember-cli-build.js index 21d8538e1..e98fa1e7e 100644 --- a/ember-cli-build.js +++ b/ember-cli-build.js @@ -200,6 +200,8 @@ module.exports = function (defaults) { ], optimizer: { plugins: [ + {prefixIds: true}, + {cleanupIds: false}, {removeDimensions: true}, {removeTitle: true}, {removeXMLNS: true},