My personal website!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Added .well-known

Koehn 25c14aab 0a19cc84

+4
+4
src/main.ts
··· 9 9 const port = process.env.PORT || 8080; 10 10 11 11 app.use("/public", express.static(path.join(path.resolve(), "src/public"))); 12 + app.use( 13 + "/.well-known", 14 + express.static(path.join(path.resolve(), "well-known")), 15 + ); 12 16 app.get(["/", "/home"], async (_req, res) => res.send(await mainRoute())); 13 17 app.get("/health", async (_req, res) => res.json(await healthReport())); 14 18 app.get("/posts/:slug", async (req, res) => await handlePost(req, res));