9 lines
188 B
JavaScript
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'))
|
|
}
|
|
} |