diff --git a/src/App.vue b/src/App.vue
index d8e2ad3..a3fea3a 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -145,10 +145,10 @@ export default {
},
favicon() {
- var favicon = 'favicon.ico';
+ var favicon = this.$config.logo ? this.$config.logo : 'favicon.ico';
if (this.$route.meta.includeFavicon) {
if (this.$matrix.currentRoom) {
- favicon = this.$matrix.currentRoom.avatar || 'favicon.ico';
+ favicon = this.$matrix.currentRoom.avatar || favicon;
}
}
return favicon;
diff --git a/src/assets/config.json b/src/assets/config.json
index abc13bb..6886b8d 100644
--- a/src/assets/config.json
+++ b/src/assets/config.json
@@ -10,6 +10,8 @@
"defaultServer": "https://neo.keanu.im",
"identityServer_unset": "",
"rtl": false,
+ "accentColor_unset": "",
+ "logo_unset": "",
"analytics": [
{
"enabled": true,
diff --git a/src/components/Home.vue b/src/components/Home.vue
index d239f48..34f8e67 100644
--- a/src/components/Home.vue
+++ b/src/components/Home.vue
@@ -4,7 +4,7 @@
-
+
@@ -42,12 +42,13 @@