mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-26 09:36:02 -07:00
Fix: Insert missing hyphen
This commit is contained in:
parent
6ed0a8f3cc
commit
e4a62a48cf
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ interface Mixin {
|
||||||
export type IConfig = ISource & Mixin;
|
export type IConfig = ISource & Mixin;
|
||||||
|
|
||||||
export default function load() {
|
export default function load() {
|
||||||
const config = yaml.safeLoad(fs.readFileSync(path, 'utf8')) as ISource;
|
const config = yaml.safeLoad(fs.readFileSync(path, 'utf-8')) as ISource;
|
||||||
|
|
||||||
const mixin: Mixin = {} as Mixin;
|
const mixin: Mixin = {} as Mixin;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue