From 40276d7f1a20184a5390575697ef5660eaa34f07 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 4 Jul 2019 20:26:12 +0900 Subject: テストページ廃止 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/app/test/script.ts | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/client/app/test/script.ts (limited to 'src/client/app/test/script.ts') 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); -}); -- cgit v1.2.3-freya