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