Hygiene: Bring missing SVGO config file from MobileFrontend

During MobileFrontend/MinervaNeue split we forgot to copy the
SVGO config file. This files is required for proper svgo execution,
othwerwise it complains that file is missing and
dev-scripts/svg_check.sh script fails

Change-Id: Ic68257091486b001126974833088666754652291
This commit is contained in:
Piotr Miazga 2017-08-30 16:53:23 +02:00 committed by Jdlrobson
parent c5139c3536
commit b7946cba59
1 changed files with 12 additions and 0 deletions

12
.svgo.yml Normal file
View File

@ -0,0 +1,12 @@
plugins:
# If the SVG doesn't start with an XML declaration, then it's MIME type will
# be detected as "text/plain" rather than "image/svg+xml" by libmagic and,
# consequently, MediaWiki's CSSMin CSS minifier. libmagic's default database
# currently requires that SVGs contain an XML declaration
# <https://github.com/threatstack/libmagic/blob/master/magic/Magdir/sgml#L5>.
- removeXMLProcInst: false
- cleanupIDs: false
- collapseGroups: false
- mergePaths: false