Parcel plugin for loading the raw content of an xml file as a string
npm install parcel-plugin-raw-xml> Parcel plugin for loading the raw content of an xml file as a string
``sh`
npm install --save-dev parcel-plugin-raw-xml
- example.xml
`xml`
lorem ipsum
- index.js
`js
import xml from './example.xml';
console.log(xml);
``