private async loadFromFile()

in src/services/configService.ts [15:20]


    private async loadFromFile(): Promise<Settings> {
        const response = await fetch("/config.json");
        const dataJson = await response.json();

        return dataJson;
    }