mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 07:46:15 -04:00
13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
const YAML = require('yaml')
|
|
|
|
const loader = function (source, map) {
|
|
this.callback(
|
|
null,
|
|
`export default function (Component) {
|
|
Component.options.__toolConfig = ${JSON.stringify(YAML.parse(source))}
|
|
}`,
|
|
map
|
|
)
|
|
}
|
|
|
|
module.exports = loader
|