paricafe/src/server/web/docs.ts

28 lines
451 B
TypeScript
Raw Normal View History

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