diff --git a/components/app.js b/components/app.js index 197c0d4..eadf146 100644 --- a/components/app.js +++ b/components/app.js @@ -18,7 +18,7 @@ import commands from "../commands.js"; import { setup as setupKeybindings } from "../keybindings.js"; import * as store from "../store.js"; -const configPromise = fetch("../config.json") +const configPromise = fetch("./config.json") .then((resp) => { if (resp.ok) { return resp.json();