Files
aklive2d/packages/config/index.ts
2025-05-02 02:27:42 +08:00

10 lines
218 B
TypeScript

import path from 'node:path'
import { yaml } from '@aklive2d/libs'
import type { Config } from './types'
const config: Config = yaml.read(
path.resolve(import.meta.dirname, 'config.yaml')
)
export default config