a cache for slack profile pictures and emojis
0
fork

Configure Feed

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

feat: add favicon and hide /

+2
favicon.ico

This is a binary file and will not be displayed.

+2
src/index.ts
··· 75 .use(cors()) 76 .use( 77 swagger({ 78 documentation: { 79 info: { 80 version: version, ··· 130 131 return "Hello World from Cachet 😊\n\n---\nSee /swagger for docs\n---"; 132 }) 133 .get( 134 "/health", 135 async ({ error }) => {
··· 75 .use(cors()) 76 .use( 77 swagger({ 78 + exclude: ["/", "favicon.ico"], 79 documentation: { 80 info: { 81 version: version, ··· 131 132 return "Hello World from Cachet 😊\n\n---\nSee /swagger for docs\n---"; 133 }) 134 + .get("/favicon.ico", Bun.file("./favicon.ico")) 135 .get( 136 "/health", 137 async ({ error }) => {