1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-12-21 01:59:07 +09:00
misskey/src/server/web/manifest.ts

17 lines
453 B
TypeScript
Raw Normal View History

import * as Koa from 'koa';
import * as manifest from '../../client/assets/manifest.json';
import * as deepcopy from 'deepcopy';
import fetchMeta from '../../misc/fetch-meta';
module.exports = async (ctx: Koa.BaseContext) => {
const json = deepcopy(manifest);
const instance = await fetchMeta();
json.short_name = instance.name || 'Misskey';
json.name = instance.name || 'Misskey';
ctx.set('Cache-Control', 'max-age=300');
ctx.body = json;
};