1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-08-06 14:05:22 +02:00

Added docs to favicon route

This commit is contained in:
slaveeks 2022-06-15 02:50:56 +03:00
parent d1b1b4c39f
commit 6e57874900

View file

@ -7,6 +7,9 @@ import express from 'express';
const router = express.Router();
/**
* Get favicon
*/
router.get('/favicon', (req, res) => {
const faviconURL: string = config.get('faviconURL');