revert config

This commit is contained in:
Skylar Grant 2024-08-14 19:12:49 -04:00
parent 1ce103d39c
commit 26c2f0a87d
2 changed files with 17 additions and 19 deletions

View File

@ -1,5 +1,5 @@
// Custom Classes files // Custom Classes files
const config = fetch('/assets/config.json') const config = await fetch('/assets/config.json')
.then(response => { .then(response => {
if (!response.ok) { if (!response.ok) {
throw new Error('Network response was not ok'); throw new Error('Network response was not ok');

View File

@ -1,5 +1,4 @@
{ {
"config": {
"mqtt": { "mqtt": {
"address": "wd://broker-url:port", "address": "wd://broker-url:port",
"subscriptions": [ "subscriptions": [
@ -17,5 +16,4 @@
} }
] ]
} }
}
} }