diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.ts b/src/config.ts index 5b043d3498..852a59d27a 100644 --- a/src/config.ts +++ b/src/config.ts @@ -86,7 +86,7 @@ interface Mixin { export type IConfig = ISource & Mixin; 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; |