rudeshark.net/src/server/web/docs.ts

28 lines
451 B
TypeScript
Raw Normal View History

2017-12-16 17:41:22 +01:00
/**
2018-04-12 23:06:18 +02:00
* Docs
2017-12-16 17:41:22 +01:00
*/
2018-04-13 05:05:24 +02:00
import ms = require('ms');
2018-04-12 23:06:18 +02:00
import * as Router from 'koa-router';
import * as send from 'koa-send';
2017-12-16 17:41:22 +01:00
2018-04-13 05:05:24 +02:00
const docs = `${__dirname}/../../client/docs/`;
2018-03-29 13:50:45 +02:00
2018-04-12 23:06:18 +02:00
const router = new Router();
2017-12-16 17:41:22 +01:00
2018-04-13 05:05:24 +02:00
router.get('/assets/*', async ctx => {
await send(ctx, ctx.path, {
root: docs,
maxage: ms('7 days'),
immutable: true
});
2018-04-12 23:06:18 +02:00
});
2017-12-16 17:41:22 +01:00
2018-04-13 05:05:24 +02:00
router.get('*', async ctx => {
await send(ctx, `${ctx.params[0]}.html`, {
root: docs
});
2018-04-12 23:06:18 +02:00
});
2017-12-16 17:41:22 +01:00
2018-04-13 05:05:24 +02:00
export default router;