0
0
Fork 0

レスキュー画面を追加

This commit is contained in:
Xeltica 2022-09-15 16:26:26 +09:00
parent ae5655bb00
commit 34395eedd8
2 changed files with 17 additions and 0 deletions

View file

@ -156,6 +156,10 @@ router.get('/announcements/:id', async (ctx) => {
} : null);
});
router.get('/__rescue__', async(ctx) => {
await ctx.render('rescue');
});
router.get('(.*)', async (ctx) => {
await ctx.render('frontend');
});