* feat: migrate top turbo * ci: ci test * fix: fix codeql issues * feat: ci test * chore: lint * chore: misc changes * feat: rename vite helpers * feat: use fetch to handle assets * feat: update directory * feat: fetch charword table * feat: migrate download game data and detect missing voice files * feat: symlink relative path * feat: finish wrangler upload * feat: migrate wrangler download * feat: finish * chore: auto update * ci: update ci * ci: update ci --------- Co-authored-by: Halyul <Halyul@users.noreply.github.com>
13 lines
355 B
JavaScript
13 lines
355 B
JavaScript
import path from 'node:path'
|
|
import config from '@aklive2d/config'
|
|
import { yaml } from '@aklive2d/libs'
|
|
|
|
export const DIST_DIR = path.resolve(import.meta.dirname, config.dir_name.dist)
|
|
export const CONFIG_PATH = path.resolve(
|
|
import.meta.dirname,
|
|
config.dir_name.config_yaml
|
|
)
|
|
const selfConfig = yaml.read(CONFIG_PATH)
|
|
|
|
export default selfConfig
|