From 1d3b8ab99c3c68a2b0b11b2f0adff20389dcf9f4 Mon Sep 17 00:00:00 2001 From: Steven Hugg Date: Mon, 21 Feb 2022 09:39:49 -0600 Subject: [PATCH] github: load config.js from 8bitworkshop.com --- src/ide/ui.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ide/ui.ts b/src/ide/ui.ts index 518b96f3..289c49b1 100644 --- a/src/ide/ui.ts +++ b/src/ide/ui.ts @@ -642,7 +642,7 @@ async function getGithubService() { // load firebase await loadScript('https://www.gstatic.com/firebasejs/8.8.1/firebase-app.js'); await loadScript('https://www.gstatic.com/firebasejs/8.8.1/firebase-auth.js'); - await loadScript('./config.js'); + await loadScript('https://8bitworkshop.com/config.js'); // get github API key from cookie // TODO: move to service? var ghkey = getCookie('__github_key');