Migrated to Pug
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
soraefir
2023-06-25 23:10:03 +02:00
parent 681975a44b
commit 038c274db0
10 changed files with 166 additions and 279 deletions

View File

@@ -23,7 +23,6 @@ fastify.register(require('./router/api'), { prefix: '/api' });
fastify.get('/', (req, reply) => reply.view("/template/home.pug", ));
fastify.get('/:id', (req, reply) => reply.view('/template/journey.pug'));
fastify.get('/view/:id', (req, reply) => reply.view('/template/view.pug'));
fastify.get('/short/:id', (req, reply) => reply.view('/template/short.pug'));