2018-11-20 21:11:00 +01:00
|
|
|
import VueRouter from 'vue-router';
|
|
|
|
|
|
|
|
// Style
|
|
|
|
import './style.styl';
|
|
|
|
|
|
|
|
import init from '../init';
|
|
|
|
import Index from './views/index.vue';
|
2018-12-27 12:22:54 +01:00
|
|
|
import NotFound from '../common/views/pages/not-found.vue';
|
2018-11-20 21:11:00 +01:00
|
|
|
|
|
|
|
init(launch => {
|
|
|
|
document.title = 'Misskey';
|
|
|
|
|
|
|
|
// Init router
|
|
|
|
const router = new VueRouter({
|
|
|
|
mode: 'history',
|
|
|
|
base: '/test/',
|
|
|
|
routes: [
|
|
|
|
{ path: '/', component: Index },
|
2018-12-11 12:19:13 +01:00
|
|
|
{ path: '*', component: NotFound }
|
2018-11-20 21:11:00 +01:00
|
|
|
]
|
|
|
|
});
|
|
|
|
|
|
|
|
// Launch the app
|
|
|
|
launch(router);
|
|
|
|
});
|