parcel-plugin-raw-xml
v1.0.1
Published
Parcel plugin for loading the raw content of an xml file as a string
Downloads
81
Readme
parcel-plugin-raw-xml
Parcel plugin for loading the raw content of an xml file as a string
Installation
npm install --save-dev parcel-plugin-raw-xml
Example
example.xml
<?xml version="1.0" encoding="UTF-8"?> <example> lorem ipsum </example>
index.js
import xml from './example.xml'; console.log(xml);