mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 17:03:50 +01:00
15 lines
459 B
TypeScript
15 lines
459 B
TypeScript
export default defineNitroPlugin((nitroApp) => {
|
|
nitroApp.hooks.hook('render:html', (html, { event }) => {
|
|
html.head.unshift(`\n<!---
|
|
_____ _ _
|
|
| |_|___ ___| |_ ___ _ _
|
|
| | | | |_ -|_ -| '_| -_| | |
|
|
|_|_|_|_|___|___|_,_|___|_ |
|
|
|___|
|
|
Thank you for using Misskey!
|
|
If you are reading this message... how about joining the development?
|
|
https://github.com/misskey-dev/misskey
|
|
|
|
-->\n`);
|
|
});
|
|
}); |