import type { FastifyInstance } from 'fastify' /** * The page a headless browser loads in order to render markdown for the server. * * Nothing but a host for the frontend's renderer bundle — it holds no data, reads nothing and * displays nothing. `models/rendering.ts` navigates here, waits for `__wikiRenderReady` and calls * `__wikiRender` with the content to render. */ const SHELL = ` Wiki.js Renderer ` /** * _render Routes * * Only ever fetched over the loopback interface by this instance's own headless browser, but served * like the other static shells rather than gated: there is nothing here to protect, and a session the * browser does not have could not be checked anyway. */ async function routes(app: FastifyInstance) { app.get('/', async (_req, reply) => { // -> The bundle it pulls in is hashed and immutable, but this page must not be, or a rebuilt // frontend would keep rendering through the previous one reply.header('Cache-Control', 'no-store') return reply.type('text/html; charset=utf-8').send(SHELL) }) } export default routes