diff --git a/src/App.vue b/src/App.vue
index 78841e34..4e74b80b 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -30,6 +30,18 @@ export default {
components: {
Navigation,
},
+ mounted() {
+ if (window.location.pathname === "/" || window.location.pathname.length == 0)
+ switch (this.getPreferenceString("homepage", "trending")) {
+ case "trending":
+ break;
+ case "feed":
+ this.$router.push("/feed");
+ return;
+ default:
+ break;
+ }
+ },
};
diff --git a/src/components/Preferences.vue b/src/components/Preferences.vue
index f3ce7c81..76c6f3fb 100644
--- a/src/components/Preferences.vue
+++ b/src/components/Preferences.vue
@@ -67,6 +67,13 @@
+
+ Default Homepage
+
+