From 08142ead678c598b8500f563cc117bfa7faf5944 Mon Sep 17 00:00:00 2001 From: "Acid Chicken (硫酸鶏)" Date: Tue, 11 Dec 2018 20:19:13 +0900 Subject: Resolve #3581 (#3589) * Update ja-JP.yml * Create 404.vue * Update script.ts * Update script.ts * Update script.ts * Update script.ts * Update script.ts * Update script.ts * Update 404.vue * Update meta.ts * Update instance.vue * Update update-meta.ts --- src/client/app/test/script.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/client/app/test/script.ts') diff --git a/src/client/app/test/script.ts b/src/client/app/test/script.ts index 5818cf2913..d9fb666789 100644 --- a/src/client/app/test/script.ts +++ b/src/client/app/test/script.ts @@ -5,6 +5,7 @@ import './style.styl'; import init from '../init'; import Index from './views/index.vue'; +import NotFound from '../common/views/pages/404.vue'; init(launch => { document.title = 'Misskey'; @@ -15,6 +16,7 @@ init(launch => { base: '/test/', routes: [ { path: '/', component: Index }, + { path: '*', component: NotFound } ] }); -- cgit v1.2.3-freya