Files
aklive2d/libs/config.js
2023-01-20 15:09:53 -05:00

9 lines
188 B
JavaScript

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