diff options
Diffstat (limited to 'src/pages/popup/popup.js')
-rw-r--r-- | src/pages/popup/popup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/popup/popup.js b/src/pages/popup/popup.js index 1ac804d0..b2f2c299 100644 --- a/src/pages/popup/popup.js +++ b/src/pages/popup/popup.js @@ -9,7 +9,7 @@ let config, async function getConfig() { return new Promise(resolve => { - fetch("/config/config.json") + fetch("/config.json") .then(response => response.text()) .then(data => { config = JSON.parse(data) |