Files
aklive2d/lib/config.js
2023-01-16 14:06:14 -05:00

9 lines
191 B
JavaScript

import path from 'path'
import { read } from './yaml.js'
export default function (dirname) {
return {
basedir: dirname,
...read(path.join(dirname, 'config.yaml'))
}
}