diff --git a/config/index.js b/config/index.js index fdfac8b274..6652048cdc 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 713fe27c85..93d9d6fd4e 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ Pleroma - +
diff --git a/src/main.js b/src/main.js index f95d286f0e..7f917128cc 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({