From b6ac99fdf07a58efe331c82905c513ca7ceb75e1 Mon Sep 17 00:00:00 2001
From: Roger Braun <roger@rogerbraun.net>
Date: Sun, 6 Nov 2016 20:26:07 +0100
Subject: [PATCH] Use history routing.

---
 config/index.js | 5 -----
 index.html      | 2 +-
 src/main.js     | 5 ++++-
 3 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/config/index.js b/config/index.js
index fdfac8b2..6652048c 100644
--- a/config/index.js
+++ b/config/index.js
@@ -26,11 +26,6 @@ module.exports = {
         target: 'https://social.heldscal.la/',
         changeOrigin: true,
         cookieDomainRewrite: 'localhost'
-      },
-      '/main': {
-        target: 'https://social.heldscal.la/',
-        changeOrigin: true,
-        cookieDomainRewrite: 'localhost'
       }
     },
     // CSS Sourcemaps off by default because relative paths are "buggy"
diff --git a/index.html b/index.html
index 713fe27c..93d9d6fd 100644
--- a/index.html
+++ b/index.html
@@ -3,7 +3,7 @@
   <head>
     <meta charset="utf-8">
     <title>Pleroma</title>
-    <link rel="stylesheet" href="static/font/css/fontello.css">
+    <link rel="stylesheet" href="/static/font/css/fontello.css">
   </head>
   <body>
     <div id="app"></div>
diff --git a/src/main.js b/src/main.js
index f95d286f..7f917128 100644
--- a/src/main.js
+++ b/src/main.js
@@ -24,7 +24,10 @@ const routes = [
   { path: '/main/friends', component: FriendsTimeline }
 ]
 
-const router = new VueRouter({routes})
+const router = new VueRouter({
+  mode: 'history',
+  routes
+})
 
 /* eslint-disable no-new */
 new Vue({