summaryrefslogtreecommitdiff
path: root/src/client/app/test/script.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2019-07-04 20:26:12 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2019-07-04 20:26:12 +0900
commit40276d7f1a20184a5390575697ef5660eaa34f07 (patch)
tree06e32273fbf99d250371e4a995b44e0a707c3e2e /src/client/app/test/script.ts
parentUpdate CHANGELOG.md (diff)
downloadsharkey-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.ts25
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);
-});