Merge fix.

This commit is contained in:
Roger Braun 2018-02-22 11:15:31 +01:00
parent 519ba1fb68
commit f848eaa652
1 changed files with 0 additions and 15 deletions

View File

@ -69,21 +69,6 @@ const store = new Vuex.Store({
// strict: process.env.NODE_ENV !== 'production'
})
const routes = [
{ name: 'root', path: '/', redirect: '/main/all' },
{ path: '/main/all', component: PublicAndExternalTimeline },
{ path: '/main/public', component: PublicTimeline },
{ path: '/main/friends', component: FriendsTimeline },
{ path: '/tag/:tag', component: TagTimeline },
{ name: 'conversation', path: '/notice/:id', component: ConversationPage, meta: { dontScroll: true } },
{ name: 'user-profile', path: '/users/:id', component: UserProfile },
{ name: 'mentions', path: '/:username/mentions', component: Mentions },
{ name: 'settings', path: '/settings', component: Settings },
{ name: 'registration', path: '/registration', component: Registration },
{ name: 'user-settings', path: '/user-settings', component: UserSettings }
]
const i18n = new VueI18n({
locale: currentLocale,
fallbackLocale: 'en',