mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 23:36:15 -04:00
14 lines
264 B
JavaScript
14 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
|