import { FastifyPluginAsync } from 'fastify'; const page = ` Backup server

You have reached the backup server!

This is the backup server! If you are a regular user, you wouldn't find this place very interesting and might as well close this page now.

If you are a sysadmin, please refer to API docs or OpenAPI reference for more info

` .replaceAll('\n', '') .replaceAll(/ +/gm, ' ') .replaceAll(' <', '<') .replaceAll(' { rep.type('text/html; charset=utf-8'); return page; }); fastify.get('/favicon.ico', async (req, rep) => { rep.status(404); return ''; }); } as FastifyPluginAsync);