Use history routing.

This commit is contained in:
Roger Braun 2016-11-06 20:26:07 +01:00
parent 1ae5223742
commit b6ac99fdf0
3 changed files with 5 additions and 7 deletions

View File

@ -26,11 +26,6 @@ module.exports = {
target: 'https://social.heldscal.la/', target: 'https://social.heldscal.la/',
changeOrigin: true, changeOrigin: true,
cookieDomainRewrite: 'localhost' cookieDomainRewrite: 'localhost'
},
'/main': {
target: 'https://social.heldscal.la/',
changeOrigin: true,
cookieDomainRewrite: 'localhost'
} }
}, },
// CSS Sourcemaps off by default because relative paths are "buggy" // CSS Sourcemaps off by default because relative paths are "buggy"

View File

@ -3,7 +3,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Pleroma</title> <title>Pleroma</title>
<link rel="stylesheet" href="static/font/css/fontello.css"> <link rel="stylesheet" href="/static/font/css/fontello.css">
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>

View File

@ -24,7 +24,10 @@ const routes = [
{ path: '/main/friends', component: FriendsTimeline } { path: '/main/friends', component: FriendsTimeline }
] ]
const router = new VueRouter({routes}) const router = new VueRouter({
mode: 'history',
routes
})
/* eslint-disable no-new */ /* eslint-disable no-new */
new Vue({ new Vue({