diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2019-07-04 20:26:12 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-07-04 20:26:12 +0900 |
| commit | 40276d7f1a20184a5390575697ef5660eaa34f07 (patch) | |
| tree | 06e32273fbf99d250371e4a995b44e0a707c3e2e /src/client/app/test/script.ts | |
| parent | Update CHANGELOG.md (diff) | |
| download | sharkey-40276d7f1a20184a5390575697ef5660eaa34f07.tar.gz sharkey-40276d7f1a20184a5390575697ef5660eaa34f07.tar.bz2 sharkey-40276d7f1a20184a5390575697ef5660eaa34f07.zip | |
テストページ廃止
Diffstat (limited to 'src/client/app/test/script.ts')
| -rw-r--r-- | src/client/app/test/script.ts | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/client/app/test/script.ts b/src/client/app/test/script.ts deleted file mode 100644 index 44fe224cbc..0000000000 --- a/src/client/app/test/script.ts +++ /dev/null @@ -1,25 +0,0 @@ -import VueRouter from 'vue-router'; - -// Style -import './style.styl'; - -import init from '../init'; -import Index from './views/index.vue'; -import NotFound from '../common/views/pages/not-found.vue'; - -init(launch => { - document.title = 'Misskey'; - - // Init router - const router = new VueRouter({ - mode: 'history', - base: '/test/', - routes: [ - { path: '/', component: Index }, - { path: '*', component: NotFound } - ] - }); - - // Launch the app - launch(router); -}); |