A parcel plugin that enables inline svg support
[demo](https://parcel-inlinsvg.now.sh/)npm install parcel-plugin-inlinesvg -s
or
yarn add parcel-plugin-inlinesvg
npm run example
Create a .parcelrc
in the roof of your project
{
"inlinesvg": {
"exts": ["svg"],
"plugins": [
{
"removeDoctype": true
},
{
"removeComments": true
},
{
"removeXMLNS": true
}
]
}
}
MIT License